diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-04 11:56:33 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-09-04 11:56:33 +0000 |
commit | 249756f2e07290f8a25f40fad3b9af63d5b3d6b3 (patch) | |
tree | f74af6877583366ce8b2c89369f2db7ce80f84ef /target/toolchain/Makefile | |
parent | 5fd261fc89e3e871ea5eda5245f9ade17c0063cb (diff) |
target/toolchain: fix installation after r22723
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22887 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/toolchain/Makefile')
-rw-r--r-- | target/toolchain/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/toolchain/Makefile b/target/toolchain/Makefile index 1e0dec2dd1..0db18d1ac1 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} ; \ |