allow configuration of the target directory for binaries
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38890
This commit is contained in:
parent
61ad6831d3
commit
f0721fa502
2 changed files with 5 additions and 1 deletions
|
@ -421,6 +421,10 @@ menuconfig DEVEL
|
||||||
bool "Show broken platforms / packages" if DEVEL
|
bool "Show broken platforms / packages" if DEVEL
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config BINARY_FOLDER
|
||||||
|
string "Binary folder" if DEVEL
|
||||||
|
default ""
|
||||||
|
|
||||||
config DOWNLOAD_FOLDER
|
config DOWNLOAD_FOLDER
|
||||||
string "Download folder" if DEVEL
|
string "Download folder" if DEVEL
|
||||||
default ""
|
default ""
|
||||||
|
|
2
rules.mk
2
rules.mk
|
@ -73,7 +73,7 @@ ifdef CONFIG_MIPS64_ABI
|
||||||
endif
|
endif
|
||||||
|
|
||||||
DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl)
|
DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl)
|
||||||
BIN_DIR:=$(TOPDIR)/bin/$(BOARD)
|
BIN_DIR:=$(if $(call qstrip,$(CONFIG_BINARY_FOLDER)),$(call qstrip,$(CONFIG_BINARY_FOLDER)),$(TOPDIR)/bin/$(BOARD))
|
||||||
INCLUDE_DIR:=$(TOPDIR)/include
|
INCLUDE_DIR:=$(TOPDIR)/include
|
||||||
SCRIPT_DIR:=$(TOPDIR)/scripts
|
SCRIPT_DIR:=$(TOPDIR)/scripts
|
||||||
BUILD_DIR_BASE:=$(TOPDIR)/build_dir
|
BUILD_DIR_BASE:=$(TOPDIR)/build_dir
|
||||||
|
|
Loading…
Reference in a new issue