This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch to install.texi2html


install.texi2html needs to use -I $SOURCEDIR to find install-old.texi when
SOURCEDIR isn't ".".  The following patch passes install.texi2html;
applied to mainline.

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ChangeLog,v
retrieving revision 1.12369
diff -u -r1.12369 ChangeLog
--- ChangeLog	2001/12/17 19:19:47	1.12369
+++ ChangeLog	2001/12/17 19:42:27
@@ -1,5 +1,7 @@
 2001-12-17  Joseph S. Myers  <jsm28@cam.ac.uk>
 
+	* doc/install.texi2html: Use -I $SOURCEDIR.
+
 	Separate user and internals manuals.
 	* Makefile.in (info, $(docdir)/gcc.info, dvi, gcc.dvi): Update
 	dependencies.
Index: doc/install.texi2html
===================================================================
RCS file: /cvs/gcc/gcc/gcc/doc/install.texi2html,v
retrieving revision 1.6
diff -u -r1.6 install.texi2html
--- install.texi2html	2001/12/07 16:57:27	1.6
+++ install.texi2html	2001/12/17 19:42:27
@@ -27,5 +27,5 @@
 do
     define=`echo $x | sed -e 's/\.//g'`
     echo "define = $define"
-    $MAKEINFO -I $SOURCEDIR/include $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/$x
+    $MAKEINFO -I $SOURCEDIR -I $SOURCEDIR/include $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/$x
 done

-- 
Joseph S. Myers
jsm28@cam.ac.uk


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]