diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-03-09 03:23:41 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-03-09 03:23:41 +0000 |
commit | 28dfc0a5adb2d46bf395c63a6fef5117bcba5faf (patch) | |
tree | ec775bd11fef79aadf59f488616a2f2a89839705 /profiles | |
parent | Add mask for new ipsec-tools version. (diff) | |
download | historical-28dfc0a5adb2d46bf395c63a6fef5117bcba5faf.tar.gz historical-28dfc0a5adb2d46bf395c63a6fef5117bcba5faf.tar.bz2 historical-28dfc0a5adb2d46bf395c63a6fef5117bcba5faf.zip |
Include a kludge to fix .las pointing to wrong place for libstdc++
Diffstat (limited to 'profiles')
-rw-r--r-- | profiles/default-linux/sparc/sparc64/dev/multilib/README | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/profiles/default-linux/sparc/sparc64/dev/multilib/README b/profiles/default-linux/sparc/sparc64/dev/multilib/README index 22ac224bdcbb..2f947dbb052c 100644 --- a/profiles/default-linux/sparc/sparc64/dev/multilib/README +++ b/profiles/default-linux/sparc/sparc64/dev/multilib/README @@ -51,3 +51,10 @@ Use the stage1 gcc to build bootstrap multilib glibc Now, finally emerge your multilib sandbox, full glibc and gcc # emerge -v portage gcc glibc + +Now unfortunately a bunch of .las are now lying around pointing to incorrect places... Here's a kludge: +sed -i -e 's:usr/lib/gcc\(-lib\)?/sparc-unknown-linux-gnu:usr/lib/gcc/sparc64-unknown-linux-gnu:g' \ + -e 's:/lib\(ffi\|g2c\|objc\|stdc++\|supc++\)\.la:/32/lib\1.la:g' \ + -e 's:/32/32/:/32/:g' \ + /usr/lib/*.la /usr/kde/*/lib/*.la /usr/qt/*/lib/*.la + |