diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-03 15:49:22 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-03 15:49:22 +0000 |
commit | d2c1dfe0efff6d9a0128839136f00084f478c26a (patch) | |
tree | abe39fcc0550d3eb374a8d00aa24a6df2a9d3ab7 /maintainer-scripts/update_web_docs | |
parent | 296ab3258dd4374dbd5843bde82aeb99db6552a6 (diff) | |
download | gcc-d2c1dfe0efff6d9a0128839136f00084f478c26a.tar.gz |
* update_web_docs: Don't generate HTML from gxxint.texi. Don't
run texi2html on manuals that aren't present.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41789 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts/update_web_docs')
-rwxr-xr-x | maintainer-scripts/update_web_docs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/maintainer-scripts/update_web_docs b/maintainer-scripts/update_web_docs index bb67366229a..a9b34707c35 100755 --- a/maintainer-scripts/update_web_docs +++ b/maintainer-scripts/update_web_docs @@ -91,8 +91,10 @@ cvs -Q co -r$RELEASE `cat FILES` 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 |