From: Jo-Philipp Wich Date: Tue, 26 Oct 2010 14:15:52 +0000 (+0000) Subject: allow overriding BIN_DIR (#7412) X-Git-Tag: v19.07.0-rc1~29246 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d45c310c342eb01fd2f95441905dfbca93ec7e77;p=openwrt%2Fstaging%2Fhauke.git allow overriding BIN_DIR (#7412) SVN-Revision: 23643 --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index 469c4a2dd2..1fa074b35e 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -42,6 +42,7 @@ Building images: make image PROFILE="" # override the default target profile make image PACKAGES=" [ [ ...]]" # include extra packages make image FILES="" # include extra files from + make image BIN_DIR="" # alternative output directory for the images endef $(eval $(call shexport,Helptext)) @@ -157,7 +158,8 @@ image: $(MAKE) _call_image \ $(if $(PROFILE),USER_PROFILE="$(PROFILE)") \ $(if $(FILES),USER_FILES="$(FILES)") \ - $(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)")) + $(if $(PACKAGES),USER_PACKAGES="$(PACKAGES)") \ + $(if $(BIN_DIR),BIN_DIR="$(BIN_DIR)")) .SILENT: help info image