aboutsummaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
Diffstat (limited to 'help')
-rw-r--r--help/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/help/Makefile.am b/help/Makefile.am
index 1a6937aa27..a420b9a9d9 100644
--- a/help/Makefile.am
+++ b/help/Makefile.am
@@ -47,9 +47,9 @@ 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
- $(AM_V_GEN)$(srcdir)/faq.py >$@.tmp && \
- (( command -v elinks > /dev/null && elinks -dump -dump-width 72 -no-numbering -no-references < $@.tmp > $@ ) || \
- ( command -v links > /dev/null && links -width 72 -html-numbered-links 0 -dump $@.tmp > $@ ) || \
- ( command -v lynx > /dev/null && lynx -dump -width=72 -nolist -stdin -force-html < $@.tmp > $@ ) || \
- $(srcdir)/../tools/html2text.py --width=72 --no-links $@.tmp > $@ ) && \
+ $(AM_V_GEN)$(srcdir)/faq.py >$@.tmp && \
+ command -v elinks > /dev/null && elinks -dump -dump-width 72 -no-numbering -no-references < $@.tmp > $@ || \
+ command -v links > /dev/null && links -width 72 -html-numbered-links 0 -dump $@.tmp > $@ || \
+ command -v lynx > /dev/null && lynx -dump -width=72 -nolist -stdin -force-html < $@.tmp > $@ || \
+ $(srcdir)/../tools/html2text.py --width=72 --no-links $@.tmp > $@ && \
rm -f $@.tmp