diff options
author | Nicolas Thill <nico@openwrt.org> | 2007-08-19 06:41:38 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2007-08-19 06:41:38 +0000 |
commit | 61f23426ec6341a213c2ff3417f3cea01da07cc1 (patch) | |
tree | 8a2c761207d9a0fda375b748e46d4a25faaa0f87 | |
parent | cb1da3b7da5b37d145d12e700b31e99c5589d80d (diff) | |
download | upstream-61f23426ec6341a213c2ff3417f3cea01da07cc1.tar.gz upstream-61f23426ec6341a213c2ff3417f3cea01da07cc1.tar.bz2 upstream-61f23426ec6341a213c2ff3417f3cea01da07cc1.zip |
add back STAGING_DIR/usr/bin to TARGET_PATH until all library packages that install *-config scripts there are fixed
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8429 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ ifeq ($(CONFIG_NATIVE_TOOLCHAIN),) TARGET_CROSS?=$(OPTIMIZE_FOR_CPU)-linux-uclibc- endif -TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(STAGING_DIR_HOST)/bin:$(PATH) +TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(STAGING_DIR_HOST)/bin:$(STAGING_DIR)/usr/bin:$(PATH) TARGET_CFLAGS:=$(TARGET_OPTIMIZATION) -fhonour-copts export PATH:=$(TARGET_PATH) |