Skip to content
Snippets Groups Projects
Commit f0721fa5 authored by Imre Kaloz's avatar Imre Kaloz
Browse files

allow configuration of the target directory for binaries


Signed-off-by: default avatarImre Kaloz <kaloz@openwrt.org>

SVN-Revision: 38890
parent 61ad6831
No related branches found
No related tags found
No related merge requests found
...@@ -421,6 +421,10 @@ menuconfig DEVEL ...@@ -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 ""
......
...@@ -73,7 +73,7 @@ ifdef CONFIG_MIPS64_ABI ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment