* Include the upgrade directories when available.

This commit is contained in:
Raphaël Hertzog 2000-06-03 13:16:06 +00:00
parent 5a2cde6cc7
commit d542709dc5
2 changed files with 13 additions and 0 deletions

1
debian/changelog vendored
View File

@ -4,6 +4,7 @@ debian-cd (2.2.1) frozen unstable; urgency=low
* build.sh,build_all.sh: Better guess at size of bin CD 1
* Added the "needed" task file as tasks/forcd1.
* Update for m68k, they should at least build now.
* Include upgrade-{i386,sparc,alpha,m68k} dir when available.
-- Raphael Hertzog <hertzog@debian.org> Sat, 20 May 2000 23:42:58 +0200

View File

@ -3,4 +3,16 @@
# FOR POTATO
# Include upgrade* dir when available
set -e
for arch in i386 alpha sparc m68k
do
if [ "$ARCH" = "$arch" -a -d "$MIRROR/dists/$CODENAME/main/upgrade-$ARCH" ];
then
cp -a $MIRROR/dists/$CODENAME/main/upgrade-$ARCH $TDIR/$CODENAME-$ARCH/1/
mv $TDIR/$CODENAME-$ARCH/1/upgrade-$ARCH $TDIR/$CODENAME-$ARCH/1/upgrade
fi
done
exit 0