Fix r1478 change to don't fail if BASE_{INCLUDE,EXCLUDE} isn't set (fix simple-cdd usage, I think)
This commit is contained in:
parent
cf4e0c8ed9
commit
bd3c87bde3
4
Makefile
4
Makefile
|
@ -286,8 +286,8 @@ $(BDIR)/rawlist:
|
|||
for ARCH in $(ARCHES_NOSRC); do \
|
||||
debootstrap --arch $$ARCH \
|
||||
--print-debs \
|
||||
--include=`cat $$BASE_INCLUDE | tr "\n" "," | sed 's!,$$!!g'` \
|
||||
--exclude=`cat $$BASE_EXCLUDE | tr "\n" "," | sed 's!,$$!!g'` \
|
||||
--include=`[ -n "$(BASE_INCLUDE) ] && cat $(BASE_INCLUDE) | tr "\n" "," | sed 's!,$$!!g'` \
|
||||
--exclude=`[ -n "$(BASE_INCLUDE) ] && cat $(BASE_EXCLUDE) | tr "\n" "," | sed 's!,$$!!g'` \
|
||||
$(CODENAME) \
|
||||
$(TDIR)/debootstrap.tmp \
|
||||
file:$(MIRROR) \
|
||||
|
|
Loading…
Reference in New Issue