]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
global: Use wget -nv when downloading
authorAki Tuomi <aki.tuomi@open-xchange.com>
Wed, 14 Dec 2022 10:58:40 +0000 (12:58 +0200)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Thu, 15 Dec 2022 09:48:25 +0000 (11:48 +0200)
wget -q hides errors too, so lets use -nv to emit short line instead.

doc/Makefile.am
src/lib-fts/Makefile.am
src/lib/Makefile.am

index 85ec538ea048f7b86513c29b9774c757c95a70e0..1fed8c68b0304d6740408cbfe46e7d92c0e1f0fc 100644 (file)
@@ -19,16 +19,6 @@ am__v_Q_ = $(am__v_Q_$(AM_DEFAULT_VERBOSITY))
 am__v_Q_0 = -q
 am__v_Q_1 =
 
-AM_V_DL_DOCS = $(am__v_DL_DOCS_$(V))
-am__v_DL_DOCS_ = $(am__v_DL_DOCS_$(AM_DEFAULT_VERBOSITY))
-am__v_DL_DOCS_0 = @echo "  DL     " $(DOCS_URL);
-am__v_DL_DOCS_1 =
-
-AM_V_DL_MAN = $(am__v_DL_MAN_$(V))
-am__v_DL_MAN_ = $(am__v_DL_MAN_$(AM_DEFAULT_VERBOSITY))
-am__v_DL_MAN_0 = @echo "  DL     " $(MAN_URL);
-am__v_DL_MAN_1 =
-
 if INSTALL_DOCS
 SUBDIRS += man
 DOCDIRS += html
@@ -37,10 +27,10 @@ endif
 extra_dist_extra += html
 
 html-dl:
-       $(AM_V_DL_DOCS)$(WGET) $(AM_V_Q) -O- $(DOCS_URL) | xz -d | $(am__untar)
+       $(AM_V_at)$(WGET) -nv -O- $(DOCS_URL) | xz -d | $(am__untar)
 
 man-dl:
-       $(AM_V_DL_MAN)$(WGET) $(AM_V_Q) -O- $(MAN_URL) | xz -d | $(am__untar)
+       $(AM_V_at)$(WGET) -nv -O- $(MAN_URL) | xz -d | $(am__untar)
 
 all-local: html
 
index 7306ab1925fb6ea1a9e1037720d04c236bce6ea9..bf89a49dfe66b1d886a2a640bca57aba6cfa75f9 100644 (file)
@@ -43,20 +43,15 @@ 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) $(AM_V_Q) -O $@ https://dovecot.org/res/WordBreakProperty.txt
+       $(AM_V_at)test -f $@ || $(WGET) -nv -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 > $@
+       $(AM_V_at)perl $(srcdir)/word-properties.pl boundaries $(srcdir)/WordBreakProperty.txt > $@
 
 $(srcdir)/PropList.txt:
-       $(AM_V_GEN)test -f $@ || $(WGET) $(AM_V_Q) -O $@ https://dovecot.org/res/PropList.txt
+       $(AM_V_at)test -f $@ || $(WGET) -nv -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 > $@
+       $(AM_V_at)perl $(srcdir)/word-properties.pl breaks $(srcdir)/PropList.txt > $@
 
 
 if BUILD_FTS_STEMMER
index 817a6dfffb9e8c9775d33ebdc251d05a08cbabf7..be00a6ddb89b1f37aa2ecb051f844d7dbadb495b 100644 (file)
@@ -15,11 +15,6 @@ EXTRA_DIST = unicodemap.c unicodemap.pl UnicodeData.txt
 LEX=/bin/false
 YACC=/bin/false
 
-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 =
-
 # We use custom rules here because we want to use flex and bison instead
 # of lex and yacc (or bison in yacc-compatibility mode).  Both flex and
 # bison can handle properly naming the generated files, and it is simpler
@@ -36,7 +31,7 @@ am__v_Q_1 =
 event-filter-parser.h: event-filter-parser.c
 
 $(srcdir)/UnicodeData.txt:
-       $(AM_V_GEN)test -f $@ || $(WGET) $(AM_V_Q) -O $@ https://dovecot.org/res/UnicodeData.txt
+       $(AM_V_at)test -f $@ || $(WGET) -nv -O $@ https://dovecot.org/res/UnicodeData.txt
 
 $(srcdir)/unicodemap.c: $(srcdir)/unicodemap.pl $(srcdir)/UnicodeData.txt
        $(AM_V_GEN)perl $(srcdir)/unicodemap.pl < $(srcdir)/UnicodeData.txt > $@