diff options
author | Gerald Pfeifer <gerald@pfeifer.com> | 2021-10-24 11:48:29 +0200 |
---|---|---|
committer | Gerald Pfeifer <gerald@pfeifer.com> | 2021-11-05 13:06:03 +0100 |
commit | 84cbbb0a163c1570e51185a6b58d1ea806b6ef24 (patch) | |
tree | 8abcb6e24d53d6c42b9464af31e367e6eb8bbd27 /gcc | |
parent | 14c7041a1f00ef4ee9a036e0b369c97646db5b5c (diff) | |
download | gcc-84cbbb0a163c1570e51185a6b58d1ea806b6ef24.zip gcc-84cbbb0a163c1570e51185a6b58d1ea806b6ef24.tar.gz gcc-84cbbb0a163c1570e51185a6b58d1ea806b6ef24.tar.bz2 |
doc: No longer generate old.html
Commit 431d26e1dd18c1146d3d4dcd3b45a3b04f7f7d59 removed
doc/install-old.texi, alas we still tried to generate the
associated web page old.html - which then turned out empty.
Simplify remove this from the list of pages to be generated.
gcc:
* doc/install.texi2html: Do not generate old.html any longer.
Diffstat (limited to 'gcc')
-rwxr-xr-x | gcc/doc/install.texi2html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/doc/install.texi2html b/gcc/doc/install.texi2html index 09bbbc4..001a869 100755 --- a/gcc/doc/install.texi2html +++ b/gcc/doc/install.texi2html @@ -46,9 +46,9 @@ fi echo "@set srcdir $SOURCEDIR/.." ) > $DESTDIR/gcc-vers.texi -for x in index.html specific.html prerequisites.html download.html configure.html \ - build.html test.html finalinstall.html binaries.html old.html \ - gfdl.html +for x in index.html specific.html prerequisites.html download.html \ + configure.html build.html test.html finalinstall.html \ + binaries.html gfdl.html do define=`echo $x | sed -e 's/\.//g'` echo "define = $define" |