diff options
author | 2004-08-06 03:17:37 +0000 | |
---|---|---|
committer | 2004-08-06 03:17:37 +0000 | |
commit | 2b0eb70d628452974a9c2a8cc8b3293b552fd0a0 (patch) | |
tree | f7d1b42ac41e13532d0ba8ca5aee180e19d1318e /sys-libs | |
parent | fix bad header (diff) | |
download | historical-2b0eb70d628452974a9c2a8cc8b3293b552fd0a0.tar.gz historical-2b0eb70d628452974a9c2a8cc8b3293b552fd0a0.tar.bz2 historical-2b0eb70d628452974a9c2a8cc8b3293b552fd0a0.zip |
touchup stripping
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/Manifest | 8 | ||||
-rw-r--r-- | sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest index 673582b88505..5669ba725c7a 100644 --- a/sys-libs/glibc/Manifest +++ b/sys-libs/glibc/Manifest @@ -12,7 +12,7 @@ MD5 d45ceeff372f8fc44d27bc72c62868af glibc-2.3.3_pre20040207.ebuild 20510 MD5 cbebbcf41ef6066a3ace87984661cbe1 glibc-2.3.3_pre20040420.ebuild 20803 MD5 69984eec15f8b446a20d53ed30a79289 glibc-2.3.4.20040605-r1.ebuild 18025 MD5 1d6c38dbd7ccc25b49a5b3c835d7542a glibc-2.3.4.20040605.ebuild 17579 -MD5 4e5e7f4180a3007f982b0a3ce44351c9 glibc-2.3.4.20040619-r1.ebuild 21589 +MD5 d76a35df00c99bb5176fbc32998faa42 glibc-2.3.4.20040619-r1.ebuild 21627 MD5 88536b780bd869e0862794ad581860bd glibc-2.3.4.20040619.ebuild 21456 MD5 567094e03359ffc1c95af7356395228d metadata.xml 162 MD5 9cc1e6b6f749dba7c8759bd07266f7d9 files/digest-glibc-2.2.5-r9 143 @@ -128,7 +128,7 @@ MD5 1185022e9a50560d1bf9116a0461e011 files/2.3.4/mips-sysdep-cancel.diff 2402 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.9.8 (GNU/Linux) -iD8DBQFBEsoeHTu7gpaalycRAumuAJ9A+cqNx7ZTtiyRiSZp07Qe5pex8wCgioVR -2fLebO81/HBNDdmbMhsG4Hw= -=0gc3 +iD8DBQFBEvh+HTu7gpaalycRAjyUAJ92rm90pgtpTmn7G6/HeviDbs28VwCdFxKX ++aUDhVoLotJVaAqCCqgdceI= +=DrKZ -----END PGP SIGNATURE----- diff --git a/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild b/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild index 3cb30362bdab..8c8eb6f90c23 100644 --- a/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild +++ b/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild,v 1.2 2004/08/05 23:59:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.3.4.20040619-r1.ebuild,v 1.3 2004/08/06 03:17:37 vapier Exp $ inherit eutils flag-o-matic gcc @@ -630,8 +630,10 @@ src_install() { install_root=${D} \ install || die # now, strip everything but the thread libs #46186 + mkdir ${T}/thread-backup + mv ${D}/lib/lib{pthread,thread_db}* ${T}/thread-backup/ RESTRICT="" prepallstrip - cp `find -maxdepth 2 -name 'libpthread.so' -o -name 'libthread_db.so'` ${D}/lib/ + mv ${T}/thread-backup/* ${D}/lib/ # If librt.so is a symlink, change it into linker script (Redhat) if [ -L "${D}/usr/lib/librt.so" -a "${LIBRT_LINKERSCRIPT}" = "yes" ]; then @@ -686,7 +688,7 @@ EOF timezone/install-others -C ${WORKDIR}/build || die fi - if use pic && use !amd64; then + if use pic && ! use amd64 ; then find ${S}/${buildtarget}/ -name "soinit.os" -exec cp {} ${D}/lib/soinit.o \; find ${S}/${buildtarget}/ -name "sofini.os" -exec cp {} ${D}/lib/sofini.o \; find ${S}/${buildtarget}/ -name "*_pic.a" -exec cp {} ${D}/lib \; |