Commit 00ef0d03 by Jakub Jelinek Committed by Jakub Jelinek

re PR web/85578 (broken links in gcc-8.0.1-RC-20180427/INSTALL/specific.html,…

re PR web/85578 (broken links in gcc-8.0.1-RC-20180427/INSTALL/specific.html, and out of date prerequisites.html)

	PR web/85578
	* doc/install.texi2html: Replace _002d with - and _002a with * in
	generated html files using sed.

From-SVN: r259799
parent 8c2e1d6c
2018-05-01 Jakub Jelinek <jakub@redhat.com>
PR web/85578
* doc/install.texi2html: Replace _002d with - and _002a with * in
generated html files using sed.
2018-04-30 David Malcolm <dmalcolm@redhat.com> 2018-04-30 David Malcolm <dmalcolm@redhat.com>
PR c++/85523 PR c++/85523
......
...@@ -52,7 +52,10 @@ for x in index.html specific.html prerequisites.html download.html configure.htm ...@@ -52,7 +52,10 @@ for x in index.html specific.html prerequisites.html download.html configure.htm
do do
define=`echo $x | sed -e 's/\.//g'` define=`echo $x | sed -e 's/\.//g'`
echo "define = $define" echo "define = $define"
$MAKEINFO --no-number-sections -I $SOURCEDIR -I $SOURCEDIR/include -I $DESTDIR $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/$x $MAKEINFO --no-number-sections -I $SOURCEDIR -I $SOURCEDIR/include -I $DESTDIR $SOURCEDIR/install.texi --html --no-split -D$define -o$DESTDIR/temp.html
# Use sed to work around makeinfo 4.7 brokenness.
sed -e 's/_002d/-/g' -e 's/_002a/*/g' $DESTDIR/temp.html > $DESTDIR/$x
rm $DESTDIR/temp.html
done done
rm $DESTDIR/gcc-vers.texi rm $DESTDIR/gcc-vers.texi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment