diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-08-19 12:49:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-08-19 12:49:51 +0000 |
commit | 62c174067616a911ef77a8cf02a6cc2220e534ec (patch) | |
tree | 30ea6c074ef3e3c343c672c2fcc492453ed252e2 /rules.mk | |
parent | d9e0d5705ab187ff024067049f1077f95074a6c6 (diff) | |
download | upstream-62c174067616a911ef77a8cf02a6cc2220e534ec.tar.gz upstream-62c174067616a911ef77a8cf02a6cc2220e534ec.tar.bz2 upstream-62c174067616a911ef77a8cf02a6cc2220e534ec.zip |
toolchain: fix the sysroot mess by getting rid of $(TOOLCHAIN_DIR)/usr and moving it back to $(TOOLCHAIN_DIR), this change makes the toolchain relocatable again, which should fix the SDK
SVN-Revision: 22723
Diffstat (limited to 'rules.mk')
-rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ ifndef DUMP TARGET_CFLAGS+= -fhonour-copts TARGET_CPPFLAGS+= -I$(TOOLCHAIN_DIR)/usr/include -I$(TOOLCHAIN_DIR)/include TARGET_LDFLAGS+= -L$(TOOLCHAIN_DIR)/usr/lib -L$(TOOLCHAIN_DIR)/lib - TARGET_PATH:=$(TOOLCHAIN_DIR)/usr/bin:$(TARGET_PATH) + TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH) else ifeq ($(CONFIG_NATIVE_TOOLCHAIN),) TARGET_CROSS:=$(call qstrip,$(CONFIG_TOOLCHAIN_PREFIX)) |