Check if the missing debootstrap-required is not included on base_exclude.

This commit is contained in:
Otavio Salvador 2004-05-05 18:46:02 +00:00
parent e9c6a241b2
commit 9434b3bf85
2 changed files with 6 additions and 0 deletions

View File

@ -480,6 +480,10 @@ $(BDIR)/packages-stamp:
ok=yes; \
for p in `/usr/sbin/debootstrap --arch $(ARCH) --print-debs $(CODENAME)`; do \
if ! grep -q ^$$p$$ $(BDIR)/$$DISK.packages; then \
if [ -n "$(BASE_EXCLUDE)" ] && grep -q ^$$p$$ $(BASE_EXCLUDE); then \
echo "Missing debootstrap-required $$p but included in $(BASE_EXCLUDE)"; \
continue; \
fi; \
ok=no; \
echo "Missing debootstrap-required $$p"; \
fi; \

2
debian/changelog vendored
View File

@ -65,6 +65,8 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
handle a command line longer than 127 chars right now
* Otavio Salvador
- Preprocess exclude files much like tasks files are. Closes: #247379
- Check if the missing debootstrap-required is not included on
base_exclude.
-- Raphael Hertzog <hertzog@debian.org> Thu, 25 Mar 2004 07:33:23 +0100