profile.mk: fix thinko

find's argument order is a bit different indeed.
This commit is contained in:
Ivan Zakharyaschev 2018-06-05 18:22:01 +03:00 committed by Michael Shigorin
parent d657a65ec6
commit 8e94854858

View File

@ -53,7 +53,7 @@ profile/init: distclean
eval `apt-config shell $${APTCONF:+-c=$$APTCONF} \
SOURCELIST Dir::Etc::sourcelist/f \
SOURCEPARTS Dir::Etc::sourceparts/d`; \
find -mindepth 1 -maxdepth 1 "$$SOURCEPARTS" -name '*.list' \
find "$$SOURCEPARTS" -mindepth 1 -maxdepth 1 -name '*.list' \
| xargs egrep -hv -e '^#|^[[:blank:]]*$$' -- "$$SOURCELIST" \
| tee $(BUILDDIR)/sources.list; \
echo; \