From: Nick Mathewson Date: Thu, 23 Aug 2012 17:19:40 +0000 (-0400) Subject: Make asciidoc generation quieter X-Git-Tag: tor-0.2.4.1-alpha~37^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b67057a542f8e732795537c4c9812c87973c595a;p=thirdparty%2Ftor.git Make asciidoc generation quieter --- diff --git a/doc/include.am b/doc/include.am index 4876a628f2..80034861e2 100644 --- a/doc/include.am +++ b/doc/include.am @@ -57,11 +57,11 @@ $(man_in) : $(txt_in) # use ../config.status to swap all machine-specific magic strings # in the asciidoc with their replacements. $(asciidoc_product) : $(txt_in) $(man_in) - $(MKDIR_P) $(@D) - $(AM_V_GEN)if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \ + $(AM_V_GEN)$(MKDIR_P) $(@D) && \ + if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \ cp $(top_srcdir)/$@.in $@; \ - fi - $(AM_V_GEN)./config.status --file=$@; + fi && \ + ./config.status -q --file=$@; $(doc_DATA) : $(html_in)