Commit 05e8ea48 authored by Anton Midyukov's avatar Anton Midyukov

Add option NOCHECK to disable checking for package availability

parent 053f3644
......@@ -115,6 +115,11 @@ $HOME/.mkimage/profiles.mk.
** значение: пусто (по умолчанию) либо любая строка
** см. image.in/Makefile
* NOCHECK
** отключает проверку списков пакетов перед сборкой
** значение: пусто (по умолчанию) либо любая строка
** см. pkg.in/lists/Makefile
* QUIET
** отключает поясняющие сообщения при сборке (например, под cron)
** значение: пусто (по умолчанию) либо любая строка
......
......@@ -37,7 +37,7 @@ save_packages_to_lists:
check-lists:
@APTBOX=$(BUILDDIR)/.work/pkgbox/aptbox; \
if [ -d "$$APTBOX" ]; then \
if [ -d "$$APTBOX" ] && [ -z "$(NOCHECK)" ]; then \
check-pkg-list --aptbox "$$APTBOX" `find $(TARGET) -type f`; \
fi
@rm -f $(TARGET)/*_PACKAGES*
......
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