]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-fts: Add and use AM_V_Q
authorAki Tuomi <aki.tuomi@open-xchange.com>
Fri, 30 Sep 2022 08:14:05 +0000 (11:14 +0300)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Fri, 30 Sep 2022 08:47:39 +0000 (11:47 +0300)
src/lib-fts/Makefile.am

index 5ce22599fa13e8aca39bb6583f9616d8db5c6ed1..03b284778e3e2cc8ba1b7956113b8b9d1d559fd8 100644 (file)
@@ -43,13 +43,18 @@ EXTRA_DIST = \
        word-break-data.c \
        stopwords/stopwords_malformed.txt
 
+AM_V_Q = $(am__v_Q_$(V))
+am__v_Q_ = $(am__v_Q_$(AM_DEFAULT_VERBOSITY))
+am__v_Q_0 = -q
+am__v_Q_1 =
+
 $(srcdir)/WordBreakProperty.txt:
-       $(AM_V_GEN)test -f $@ || $(WGET) -qO $@ https://dovecot.org/res/WordBreakProperty.txt
+       $(AM_V_GEN)test -f $@ || $(WGET) $(AM_V_Q) -O $@ https://dovecot.org/res/WordBreakProperty.txt
 $(srcdir)/word-boundary-data.c: $(srcdir)/word-properties.pl $(srcdir)/WordBreakProperty.txt
        $(AM_V_GEN)perl $(srcdir)/word-properties.pl boundaries $(srcdir)/WordBreakProperty.txt > $@
 
 $(srcdir)/PropList.txt:
-       $(AM_V_GEN)test -f $@ || $(WGET) -qO $@ https://dovecot.org/res/PropList.txt
+       $(AM_V_GEN)test -f $@ || $(WGET) $(AM_V_Q) -O $@ https://dovecot.org/res/PropList.txt
 $(srcdir)/word-break-data.c: $(srcdir)/word-properties.pl $(srcdir)/PropList.txt
        $(AM_V_GEN)perl $(srcdir)/word-properties.pl breaks $(srcdir)/PropList.txt > $@