Missing b-f documentation is not a fatal error. Keep
building if it is missing.
This commit is contained in:
parent
f882aab15d
commit
83b25ffb88
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue