summaryrefslogtreecommitdiff
path: root/target/toolchain
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-09-04 11:56:33 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-09-04 11:56:33 +0000
commit3e747a7f7534d1c7a5ac1b8e58b99a2585cac0c9 (patch)
treea5e1ab9bb740d3dd5e0de328d4a65608939aecc8 /target/toolchain
parentf40f0c001e241ae7a2e4f9fbb474f277b9b16c24 (diff)
downloadmtk-20170518-3e747a7f7534d1c7a5ac1b8e58b99a2585cac0c9.zip
mtk-20170518-3e747a7f7534d1c7a5ac1b8e58b99a2585cac0c9.tar.gz
mtk-20170518-3e747a7f7534d1c7a5ac1b8e58b99a2585cac0c9.tar.bz2
target/toolchain: fix installation after r22723
SVN-Revision: 22887
Diffstat (limited to 'target/toolchain')
-rw-r--r--target/toolchain/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/target/toolchain/Makefile b/target/toolchain/Makefile
index 1e0dec2..0db18d1 100644
--- a/target/toolchain/Makefile
+++ b/target/toolchain/Makefile
@@ -38,9 +38,9 @@ $(BIN_DIR)/$(TOOLCHAIN_NAME).tar.bz2: clean
$(CP) $(TOPDIR)/LICENSE ./files/README.TOOLCHAIN \
$(TOOLCHAIN_BUILD_DIR)/
- $(CP) ./files/wrapper.sh $(TOOLCHAIN_PREFIX)/usr/bin/$(REAL_GNU_TARGET_NAME)-wrapper.sh
- chmod +x $(TOOLCHAIN_PREFIX)/usr/bin/$(REAL_GNU_TARGET_NAME)-wrapper.sh
- (cd $(TOOLCHAIN_PREFIX)/usr/bin; \
+ $(CP) ./files/wrapper.sh $(TOOLCHAIN_PREFIX)/bin/$(REAL_GNU_TARGET_NAME)-wrapper.sh
+ chmod +x $(TOOLCHAIN_PREFIX)/bin/$(REAL_GNU_TARGET_NAME)-wrapper.sh
+ (cd $(TOOLCHAIN_PREFIX)/bin; \
for app in cc gcc g++ c++ cpp ld as ; do \
[ -f $(REAL_GNU_TARGET_NAME)-$${app} ] && mv $(REAL_GNU_TARGET_NAME)-$${app} $(REAL_GNU_TARGET_NAME)-$${app}.bin ; \
ln -sf $(REAL_GNU_TARGET_NAME)-wrapper.sh $(REAL_GNU_TARGET_NAME)-$${app} ; \