diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-26 14:15:52 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-26 14:15:52 +0000 |
commit | fabcdfae1ef92c99a6274a16141b5942acf70059 (patch) | |
tree | c5ff1eb7b482e8d97ecc80f768aab516f3653782 | |
parent | dc3eefc2b3c8646dc4a68c6c15b6f6ac5adbd244 (diff) | |
download | upstream-fabcdfae1ef92c99a6274a16141b5942acf70059.tar.gz upstream-fabcdfae1ef92c99a6274a16141b5942acf70059.tar.bz2 upstream-fabcdfae1ef92c99a6274a16141b5942acf70059.zip |
[imagebuilder] allow overriding BIN_DIR (#7412)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23643 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/imagebuilder/files/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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="<profilename>" # override the default target profile make image PACKAGES="<pkg1> [<pkg2> [<pkg3> ...]]" # include extra packages make image FILES="<path>" # include extra files from <path> + make image BIN_DIR="<path>" # 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 |