* Automatically add packages listed by debootstrap.

This commit is contained in:
Raphaël Hertzog 2002-02-04 14:09:13 +00:00
parent b7582144e3
commit bb20429165
2 changed files with 5 additions and 0 deletions

View File

@ -325,6 +325,10 @@ ifdef FORCENONUSONCD1
grep-dctrl -FSection -n -sPackage -e '^(non-US|non-us/main)' - | \
sort | uniq > $(BDIR)/Debian_$(CODENAME)_nonUS
endif
if [ -x "`which debootstrap`" ]; then \
debootstrap --arch $(ARCH) --print-debs $(CODENAME) \
| tr ' ' '\n' >>$(BDIR)/rawlist \
fi
$(Q)perl -npe 's/\@ARCH\@/$(ARCH)/g' $(TASK) | \
cpp -nostdinc -nostdinc++ -P -undef -D ARCH=$(ARCH) -D ARCH_$(ARCH) \
-U $(ARCH) -U i386 -U linux -U unix \

1
debian/changelog vendored
View File

@ -2,6 +2,7 @@ debian-cd (2.2.13) unstable; urgency=low
* UNRELEASED.
* Add jigdo generation support (see README).
* Automatically add packages listed by local debootstrap. Closes: #131820
-- Raphael Hertzog <hertzog@debian.org> Sun, 20 Jan 2002 15:42:29 +0100