Commit 6a85e721 authored by Anton Midyukov's avatar Anton Midyukov

build.mk: fix build without APTCONF parameter

parent 822820c3
......@@ -61,7 +61,8 @@ make-aptbox:
@mkdir -p $(BUILDDIR)/.work/pkgbox; \
mkdir -p $(BUILDDIR)/.work/.cache; \
mkdir -p $(BUILDDIR)/.work/.out; \
mkaptbox --without-stuff --target=$(ARCH) --apt-config=$(wildcard $(APTCONF)) -- $(BUILDDIR)/.work/pkgbox
APTCONF=$(wildcard $(APTCONF)); \
mkaptbox --without-stuff --target=$(ARCH) $${APTCONF:+--apt-config=$$APTCONF} -- $(BUILDDIR)/.work/pkgbox
# actual build starter
# NB: our output MUST go into stderr to escape POSTPROC
......
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