diff options
author | Jim Meyering <meyering@redhat.com> | 2012-08-27 10:05:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-08-27 10:05:02 -0400 |
commit | 7638612f019b7a2e7d77a4de2bfbbf9fc8c6e33c (patch) | |
tree | def0997dbfba169a20015d525bb60983e8c2ce4f /doc | |
parent | 90d1c8575726f2169b9cdb7f7eb28b01e30cae80 (diff) | |
download | tor-7638612f019b7a2e7d77a4de2bfbbf9fc8c6e33c.tar tor-7638612f019b7a2e7d77a4de2bfbbf9fc8c6e33c.tar.gz |
Better fix to avoid loudness on mkdir -p
(commit message by nickm)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/include.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/include.am b/doc/include.am index 80034861e..bb01038d4 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) - $(AM_V_GEN)$(MKDIR_P) $(@D) && \ - if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \ + $(AM_V_GEN)$(MKDIR_P) $(@D) + $(AM_V_at)if test -e $(top_srcdir)/$@.in && ! test -e $@.in ; then \ cp $(top_srcdir)/$@.in $@; \ - fi && \ - ./config.status -q --file=$@; + fi + $(AM_V_at)./config.status -q --file=$@; $(doc_DATA) : $(html_in) |