From: Ben Elliston Date: Tue, 7 Sep 1999 09:25:22 +0000 (+0000) Subject: 1999-09-07 Gary V. Vaughan X-Git-Tag: trunk-pre-merge-trunk-into-experimental-1999-10-01~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0173011c54fc57053097fc38816500c16093956;p=thirdparty%2Fautoconf.git 1999-09-07 Gary V. Vaughan * Makefile.in (INSTALL, standards.info, autoconf.info): MiKTeX for Windows treats all options after the first filename as additional filenames, so real options must appear before the first filename. --- diff --git a/Makefile.in b/Makefile.in index 22c6b569..ab875e6a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -112,14 +112,14 @@ info: autoconf.info @standards_info@ INSTALL # Use --no-split to avoid creating filenames > 14 chars. autoconf.info: autoconf.texi install.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --no-split --output=$@ + $(MAKEINFO) -I$(srcdir) --no-split --output=$@ $(srcdir)/autoconf.texi INSTALL: install.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/install.texi --output=$@ \ - --no-headers --no-validate + $(MAKEINFO) -I$(srcdir) --output=$@ \ + --no-headers --no-validate $(srcdir)/install.texi standards.info: standards.texi make-stds.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --no-split --output=$@ + $(MAKEINFO) -I$(srcdir) --no-split --output=$@ $(srcdir)/standards.texi dvi: autoconf.dvi @standards_dvi@ diff --git a/doc/Makefile.in b/doc/Makefile.in index 22c6b569..ab875e6a 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -112,14 +112,14 @@ info: autoconf.info @standards_info@ INSTALL # Use --no-split to avoid creating filenames > 14 chars. autoconf.info: autoconf.texi install.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/autoconf.texi --no-split --output=$@ + $(MAKEINFO) -I$(srcdir) --no-split --output=$@ $(srcdir)/autoconf.texi INSTALL: install.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/install.texi --output=$@ \ - --no-headers --no-validate + $(MAKEINFO) -I$(srcdir) --output=$@ \ + --no-headers --no-validate $(srcdir)/install.texi standards.info: standards.texi make-stds.texi - $(MAKEINFO) -I$(srcdir) $(srcdir)/standards.texi --no-split --output=$@ + $(MAKEINFO) -I$(srcdir) --no-split --output=$@ $(srcdir)/standards.texi dvi: autoconf.dvi @standards_dvi@