conditionalize the BOOTDISKS stuff better

This commit is contained in:
Josip Rodin 2003-07-24 17:41:53 +00:00
parent 554182b285
commit 38ceb03c5e
2 changed files with 8 additions and 7 deletions

View File

@ -58,9 +58,11 @@ endif
ifndef HOOK
HOOK=$(BASEDIR)/tools/$(CODENAME).hook
endif
ifneq "$(wildcard $(MIRROR)/dists/$(CODENAME)/main/disks-$(ARCH))" ""
ifndef BOOTDISKS
export BOOTDISKS=$(MIRROR)/dists/$(CODENAME)/main/disks-$(ARCH)
endif
endif
ifndef DOJIGDO
export DOJIGDO=0
endif
@ -666,19 +668,17 @@ $(BDIR)/CD1/tools:
fi ; \
done
# Add the disks-arch directories where needed
# Add the disks-arch directories if/where needed
disks: ok bin-infos $(BDIR)/CD1/dists/$(CODENAME)/main/disks-$(ARCH)
$(BDIR)/CD1/dists/$(CODENAME)/main/disks-$(ARCH):
ifdef BOOTDISKS
@echo "Adding disks-$(ARCH) stuff ..."
$(Q)set -e; \
for DISK in $(FIRSTDISKS) ; do \
mkdir -p $(BDIR)/$$DISK/dists/$(CODENAME)/main/disks-$(ARCH) ; \
if [ ! -e "$(BOOTDISKS)" ]; then \
break; \
fi; \
$(add_files) \
$(BDIR)/$$DISK/dists/$(CODENAME)/main/disks-$(ARCH) \
$(BOOTDISKS) . ; \
$(BDIR)/$$DISK/dists/$(CODENAME)/main/disks-$(ARCH) \
$(BOOTDISKS) . ; \
touch $(BDIR)/$$DISK/.disk/kernel_installable ; \
cd $(BDIR)/$$DISK/dists/$(CODENAME)/main/disks-$(ARCH); \
rm -rf base-images-*; \
@ -692,6 +692,7 @@ $(BDIR)/CD1/dists/$(CODENAME)/main/disks-$(ARCH):
rm -rf [0123456789]*; \
fi; \
done
endif
upgrade: ok bin-infos $(BDIR)/upgrade-stamp
$(BDIR)/upgrade-stamp:

View File

@ -8,7 +8,7 @@ DIR=$1
DOCDIR=doc
if [ -e $BOOTDISKS/current/$DOCDIR ] ; then
if [ -n "$BOOTDISKS" -a -e $BOOTDISKS/current/$DOCDIR ] ; then
DOCS=$BOOTDISKS/current/$DOCDIR
else
echo "WARNING: Using woody bootdisk documentation"