Missing b-f documentation is not a fatal error. Keep

building if it is missing.
This commit is contained in:
Petter Reinholdtsen 2004-06-27 22:48:19 +00:00
parent f882aab15d
commit 83b25ffb88
2 changed files with 6 additions and 1 deletions

2
debian/changelog vendored
View File

@ -54,6 +54,8 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
kernel-source-2.2.20, timidity-patches, tcl8.2 and tk8.2.
- Update list2cds to allow #-comments in the exclude file.
- Try to create $(OUT) instead of just bailing out if it is missing.
- Missing b-f documentation is not a fatal error. Keep
building if it is missing.
* Stephen R. Marenka
- Update m68k support for sarge.
- Fix m68k/amiga icons.

View File

@ -14,9 +14,12 @@ DOCDIR=doc
if [ -e $BOOTDISKS/current/$DOCDIR ] ; then
DOCS=$BOOTDISKS/current/$DOCDIR
else
elif [ -e $MIRROR/dists/potato/main/disks-$ARCH/current/$DOCDIR ] ; then
echo "Using potato bootdisk documentation"
DOCS=$MIRROR/dists/potato/main/disks-$ARCH/current/$DOCDIR
else
echo "Unable to find any documentation"
exit 0
fi