From b8ba7ff221ccbdbb766463001180e28ca0d90ecb Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 25 Sep 2009 20:38:07 -0700 Subject: [PATCH] Fix missing @clicksequence problem for building Docbook output also. Commit 770f21f5 "Fix missing @clicksequence problem with older Texinfo versions." fixed the problem of missing @clicksequence for building the main PSPP documentation, partly by adding to $(AM_MAKEINFOFLAGS). However, $(AM_MAKEINFOFLAGS) wasn't used in building the Docbook output for use by Yelp as the GUI help. This commit adds $(AM_MAKEINFOFLAGS) to that command, fixing the problem. --- doc/automake.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/automake.mk b/doc/automake.mk index 9402d7af..b75aee0b 100644 --- a/doc/automake.mk +++ b/doc/automake.mk @@ -55,7 +55,7 @@ doc/tut.texi: doc/pspp.xml: doc/pspp.texinfo $(doc_pspp_TEXINFOS) @$(MKDIR_P) doc - $(MAKEINFO) --docbook -I $(top_srcdir) $< -o $@ + $(MAKEINFO) $(AM_MAKEINFOFLAGS) --docbook -I $(top_srcdir) $< -o $@ $(SED) -i -e 's/Time-&-Date/Time-\&-Date/g' $@ docbookdir = $(docdir) -- 2.30.2