There are no .txt docs for sarge, and the install.en.html is called

index.en.html instead.
This commit is contained in:
Joey Hess 2003-12-28 17:48:21 +00:00
parent 514339b722
commit 60fc43a889
1 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ fi
cd $DOCS
mkdir -p $DIR/install/$DOCDIR
if cp -a * $DIR/install/$DOCDIR/ ; then
ln -f $DIR/install/$DOCDIR/install.en.html $DIR/install/$DOCDIR/index.html
ln -f $DIR/install/$DOCDIR/index.en.html $DIR/install/$DOCDIR/index.html
else
echo "ERROR: Unable to copy installer documentation to CD."
fi
@ -31,12 +31,12 @@ fi
# Put the installer documentation in /doc too
mkdir -p $DIR/doc/install
cd $DIR/doc/install
for file in ../../install/$DOCDIR/*.{html,txt}
for file in ../../install/$DOCDIR/*.html
do
ln $file
done
if [ -e ../../install/$DOCDIR/INSTALLATION-HOWTO ]; then
ln ../../install/$DOCDIR/INSTALLATION-HOWTO
ln -f ../../install/$DOCDIR/INSTALLATION-HOWTO
fi
# FIXME: why does it have to be in two places?