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
This commit is contained in:
parent
8c2e1d6ca5
commit
00ef0d038d
@ -1,3 +1,9 @@
|
||||
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>
|
||||
|
||||
PR c++/85523
|
||||
|
||||
@ -52,7 +52,10 @@ for x in index.html specific.html prerequisites.html download.html configure.htm
|
||||
do
|
||||
define=`echo $x | sed -e 's/\.//g'`
|
||||
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
|
||||
|
||||
rm $DESTDIR/gcc-vers.texi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user