diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-06-30 02:04:16 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-06-30 02:04:16 +0000 |
commit | a4f2dbf1e3bc587a56ef9158384f71cf0b6c4f52 (patch) | |
tree | 3fc177a724ef18554843c0fbd3bd78ddb94f8128 /sys-devel | |
parent | tab fixes (diff) | |
download | gentoo-2-a4f2dbf1e3bc587a56ef9158384f71cf0b6c4f52.tar.gz gentoo-2-a4f2dbf1e3bc587a56ef9158384f71cf0b6c4f52.tar.bz2 gentoo-2-a4f2dbf1e3bc587a56ef9158384f71cf0b6c4f52.zip |
fixes problem I experienced with compiling kdelibs right after releasing
-r7
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gcc/gcc-3.1-r7.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys-devel/gcc/gcc-3.1-r7.ebuild b/sys-devel/gcc/gcc-3.1-r7.ebuild index 3105d962b07b..ae18aabd8b2a 100644 --- a/sys-devel/gcc/gcc-3.1-r7.ebuild +++ b/sys-devel/gcc/gcc-3.1-r7.ebuild @@ -253,10 +253,12 @@ src_install() { [ ! -e libobjc_gc.so ] && rm -f libobjc_gc.so #Tell libtool files where real libraries are - for LA in `ls -1 ${D}${LOC}/lib/*.la`; do + for LA in ${D}${LOC}/lib/*.la; do sed -e "s:/usr/lib:${FULLPATH}:" ${LA} > ${LA}.hacked mv ${LA}.hacked ${LA} + cp ${LA} ${FULLPATH_D} done + if build_multiple then #move libtool .la files to $FULLPATH till I figure |