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]

Re: PATCH: Remove gxxint.texi


On Mon, 30 Apr 2001, Mark Mitchell wrote:

> 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
> 
> 	* gxxint.texi: Remove.

Here is the corresponding patch to update_web_docs (which also fixes a
bug: texi2html shouldn't be run on .texi files that aren't present)
and to onlinedocs/index.html.  OK to commit?

Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/ChangeLog,v
retrieving revision 1.6
diff -u -r1.6 ChangeLog
--- ChangeLog	2001/03/19 01:40:04	1.6
+++ ChangeLog	2001/04/30 23:37:41
@@ -1,3 +1,8 @@
+2001-04-30  Joseph S. Myers  <jsm28@cam.ac.uk>
+
+	* update_web_docs: Don't generate HTML from gxxint.texi.  Don't
+	run texi2html on manuals that aren't present.
+
 2001-03-18  Phil Edwards  <pme@sources.redhat.com>
 
 	* update_web_docs_libstdcxx:  New script.
Index: update_web_docs
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/update_web_docs,v
retrieving revision 1.4
diff -u -r1.4 update_web_docs
--- update_web_docs	2001/03/17 23:59:21	1.4
+++ update_web_docs	2001/04/30 23:37:41
@@ -91,8 +91,10 @@
 mv `find . -name \*.texi -print` .
 
 # Now convert the relavent files from texi to html 
-for file in c-tree cpp chill cppinternals gcc gcj gxxint g77 objc-features porting; do 
-  /usr/local/bin/texi2html -glossary -menu -split_chapter ${file}.texi
+for file in c-tree cpp chill cppinternals gcc gcj g77 objc-features porting; do
+  if [ -e ${file}.texi ]; then
+    /usr/local/bin/texi2html -glossary -menu -split_chapter ${file}.texi
+  fi
 done
 
 # Then build a gzipped copy of each of the resulting .html files
Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/onlinedocs/index.html,v
retrieving revision 1.18
diff -u -r1.18 index.html
--- index.html	2001/03/18 11:12:59	1.18
+++ index.html	2001/04/30 23:38:03
@@ -62,8 +62,6 @@
   <li><a href="http://gcc.gnu.org/onlinedocs/gcj.html";>GCJ Manual</a></li>
   <li><a href="http://gcc.gnu.org/onlinedocs/c-tree.html";>Tree
        Representation Internals</a></li>
-  <li><a href="http://gcc.gnu.org/onlinedocs/gxxint.html";>G++ Internals
-       Manual</a></li>
   <li><a href="http://gcc.gnu.org/onlinedocs/cpp.html";>CPP Manual</a></li>
   <li><a href="http://gcc.gnu.org/onlinedocs/cppinternals.html";>CPP
        Internals Manual</a></li>

-- 
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]