From 244ba85cfda15e1d7f98627b4266789cb4fbd4e4 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 5 Mar 2015 20:43:31 -0800 Subject: [PATCH] doc: Fix use of $(AM_V_at). It has to come at the beginning of the command since it expands to @ and only "make" (not the shell) understands that. --- doc/automake.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/automake.mk b/doc/automake.mk index 2c6ec860e1..9844d335d4 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -81,8 +81,8 @@ $(srcdir)/doc/pspp.xml: doc/pspp.texi $(doc_pspp_TEXINFOS) doc/help-pages-list | $(AWK) '/.*.*<\/para>/{x=sub("",""); print; s=1;next}/<\/table>/{print; if (s==1) print ""; s=0; next}1' \ > $@,tmp $(AM_V_at)$(XMLLINT) --output /dev/null $@,tmp - cat doc/help-pages-list | while read node ; do \ - $(AM_V_at)$(XMLLINT) --xpath "$$node" $@,tmp > /dev/null; \ + $(AM_V_at)cat doc/help-pages-list | while read node ; do \ + $(XMLLINT) --xpath "$$node" $@,tmp > /dev/null; \ if test $$? -ne 0 ; then echo "$$node does not appear in $@" ; exit 1; fi ; \ done mv $@,tmp $@ -- 2.30.2