diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-30 13:34:42 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-30 13:34:42 +0000 |
commit | 92bd25c9eb14eafb1beb8f41af71fef1e545922a (patch) | |
tree | 6574d5baaa0bcf3d9c02287c75d020932674e5bd /toolchain/gcc | |
parent | 81ddf3d083e6f238de66bc9c504c814de56d9545 (diff) | |
download | buildroot-novena-92bd25c9eb14eafb1beb8f41af71fef1e545922a.tar.gz buildroot-novena-92bd25c9eb14eafb1beb8f41af71fef1e545922a.zip |
toolchain: fix up GNU_TARGET_NAME link and target_utils location
The GNU_TARGET_NAME symlink and target_utils location were not correctly
adjusted to match the move of the toolchain to $(STAGING_DIR)/usr,
creating dangling symlinks.
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/gcc-uclibc-4.x.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolchain/gcc/gcc-uclibc-4.x.mk b/toolchain/gcc/gcc-uclibc-4.x.mk index d0d3ae316..c4ef41a9d 100644 --- a/toolchain/gcc/gcc-uclibc-4.x.mk +++ b/toolchain/gcc/gcc-uclibc-4.x.mk @@ -319,14 +319,14 @@ endif ln -snf $(REAL_GNU_TARGET_NAME)-gcc \ $(STAGING_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)-cc; \ fi - if [ ! -e $(STAGING_DIR)/usr/bin/cc ]; then \ - ln -snf gcc $(STAGING_DIR)/usr/bin/cc; \ + if [ ! -e $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin/cc ]; then \ + ln -snf gcc $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin/cc; \ fi # Set up the symlinks to enable lying about target name. set -e; \ - (cd $(STAGING_DIR); \ + (cd $(STAGING_DIR)/usr; \ ln -snf $(REAL_GNU_TARGET_NAME) $(GNU_TARGET_NAME); \ - cd usr/bin; \ + cd bin; \ for app in $(REAL_GNU_TARGET_NAME)-*; do \ ln -snf $${app} \ $(GNU_TARGET_NAME)$${app##$(REAL_GNU_TARGET_NAME)}; \ |