diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-20 16:21:31 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-05-20 16:21:31 +0000 |
commit | 79f39dd4909403e1faedabba36110f5d9979d087 (patch) | |
tree | 2dc875de6e13e4fb366d803403c76bffe0061138 /gcc/doc/install.texi2html | |
parent | 8ceddf57e351c5a93a22a0e85063477f8193f825 (diff) | |
download | gcc-79f39dd4909403e1faedabba36110f5d9979d087.tar.gz |
* doc/install.texi2html: Generate gcc-vers.texi in $DESTDIR not
$SOURCEDIR/include.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135664 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/install.texi2html')
-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 c5452661187..f735d042524 100755 --- a/gcc/doc/install.texi2html +++ b/gcc/doc/install.texi2html @@ -32,7 +32,7 @@ fi echo "@clear DEVELOPMENT" fi echo "@set srcdir $SOURCEDIR/.." -) > $SOURCEDIR/include/gcc-vers.texi +) > $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 \ @@ -40,7 +40,7 @@ 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 $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/$x done -rm $SOURCEDIR/include/gcc-vers.texi +rm $DESTDIR/gcc-vers.texi |