diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2016-02-08 14:28:35 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2016-02-08 14:28:35 +0000 |
commit | 064761d1db186ddb5687acff79b602e44eae8ab0 (patch) | |
tree | a322fd9ad1a043f06415af5bc55dbf67aa6d7b2b /rules.mk | |
parent | d07d65ec307e581bbc38cd337d1ee094816cdb3f (diff) | |
download | mtk-20170518-064761d1db186ddb5687acff79b602e44eae8ab0.zip mtk-20170518-064761d1db186ddb5687acff79b602e44eae8ab0.tar.gz mtk-20170518-064761d1db186ddb5687acff79b602e44eae8ab0.tar.bz2 |
rules.mk: add TARGET_INIT_PATH toplevel variables
Add a new variable TARGET_INIT_PATH which holds the default $PATH variable
value configured in menuconfig.
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 48676
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -139,6 +139,8 @@ BUILD_DIR_HOST:=$(if $(IS_PACKAGE_BUILD),$(BUILD_DIR)/host,$(BUILD_DIR_BASE)/hos STAGING_DIR_HOST:=$(TOPDIR)/staging_dir/host TARGET_PATH:=$(subst $(space),:,$(filter-out .,$(filter-out ./,$(subst :,$(space),$(PATH))))) +TARGET_INIT_PATH:=$(call qstrip,$(CONFIG_TARGET_INIT_PATH)) +TARGET_INIT_PATH:=$(if $(TARGET_INIT_PATH),$(TARGET_INIT_PATH),/usr/sbin:/sbin:/usr/bin:/bin) TARGET_CFLAGS:=$(TARGET_OPTIMIZATION)$(if $(CONFIG_DEBUG), -g3) $(call qstrip,$(CONFIG_EXTRA_OPTIMIZATION)) TARGET_CXXFLAGS = $(TARGET_CFLAGS) TARGET_ASFLAGS_DEFAULT = $(TARGET_CFLAGS) |