Skip to content
Snippets Groups Projects
Commit 7638612f authored by Jim Meyering's avatar Jim Meyering Committed by Nick Mathewson
Browse files

Better fix to avoid loudness on mkdir -p

(commit message by nickm)
parent 90d1c857
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment