diff options
author | Gerald Combs <gerald@wireshark.org> | 2013-02-04 17:22:32 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2013-02-04 17:22:32 +0000 |
commit | c0ca6220efaaa9b8e51d7cd5e853ac5b82107368 (patch) | |
tree | 35b38b2ac5d28528a493de478de8ba33fb00d84b /help | |
parent | ac42fabbac07c6d066b934c6b772a95c24e25933 (diff) | |
download | wireshark-c0ca6220efaaa9b8e51d7cd5e853ac5b82107368.tar.gz wireshark-c0ca6220efaaa9b8e51d7cd5e853ac5b82107368.tar.bz2 wireshark-c0ca6220efaaa9b8e51d7cd5e853ac5b82107368.zip |
Prettify more build output.
svn path=/trunk/; revision=47469
Diffstat (limited to 'help')
-rw-r--r-- | help/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/help/Makefile.am b/help/Makefile.am index 8cbb659d17..82c434df95 100644 --- a/help/Makefile.am +++ b/help/Makefile.am @@ -49,7 +49,7 @@ MAINTAINERCLEANFILES = \ # The output of html2text.py isn't as pretty as elinks, links, or lynx. If that ever changes, we # can use it exclusively. faq.txt: $(srcdir)/faq.py - $(srcdir)/faq.py >$@.tmp && \ + $(AM_V_GEN)$(srcdir)/faq.py >$@.tmp && \ (( which elinks > /dev/null && elinks -dump -dump-width 72 -no-numbering -no-references < $@.tmp > $@ ) || \ ( which links > /dev/null && links -width 72 -html-numbered-links 0 -dump $@.tmp > $@ ) || \ ( which lynx > /dev/null && lynx -dump -width=72 -nolist -stdin -force-html < $@.tmp > $@ ) || \ |