diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-26 18:22:47 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-26 18:22:47 +0100 |
commit | 1eef4d96ba12f2fb790861c3217cecbf4f45942d (patch) | |
tree | e81a89732f840199b234e14a0b2d4c4c8e7ab807 /toolchain/gcc | |
parent | 113aa6cc7edfcc04a4b3d334bb4a32a2812dd118 (diff) | |
parent | 9b69269c78ddc3411482c6ecac91bb9c7faff996 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 32710c9bd..3d408c17c 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -209,10 +209,12 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled # fix linking g++ apps with libtool @-test -d $(STAGING_TARGET_DIR)/lib32 && \ cd $(STAGING_TARGET_DIR)/lib32 && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so + ln -sf libstdc++.so.6.0.17 libstdc++.so && \ + ln -sf libstdc++.so.6.0.17 libstdc++.so.6 @-test -d $(STAGING_TARGET_DIR)/lib64 && \ cd $(STAGING_TARGET_DIR)/lib64 && \ - ln -sf libstdc++.so.6.0.17 libstdc++.so + ln -sf libstdc++.so.6.0.17 libstdc++.so && \ + ln -sf libstdc++.so.6.0.17 libstdc++.so.6 # cleanup unneeded docs rm -rf $(STAGING_HOST_DIR)/share touch $@ |