mirror of
https://salsa.debian.org/images-team/debian-cd.git
synced 2024-11-24 15:19:51 -01:00
Check if the missing debootstrap-required is not included on base_exclude.
This commit is contained in:
parent
e9c6a241b2
commit
9434b3bf85
4
Makefile
4
Makefile
@ -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
2
debian/changelog
vendored
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user