Commit 8e948548 authored by Ivan Zakharyaschev's avatar Ivan Zakharyaschev Committed by Michael Shigorin

profile.mk: fix thinko

find's argument order is a bit different indeed.
parent d657a65e
......@@ -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; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment