diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-07-15 19:16:39 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-07-15 19:16:39 +0000 |
commit | 60309c345ddc7caa534412671eb248345a0767c6 (patch) | |
tree | 21e17623bcad9ba6a097daf7c04c2a3f716a898b /sys-libs | |
parent | Add built_with_use check for bug 164514, missing quotes, and more. (diff) | |
download | gentoo-2-60309c345ddc7caa534412671eb248345a0767c6.tar.gz gentoo-2-60309c345ddc7caa534412671eb248345a0767c6.tar.bz2 gentoo-2-60309c345ddc7caa534412671eb248345a0767c6.zip |
only skip stripping on libpthread db
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/glibc-2.6.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-libs/glibc/glibc-2.6.ebuild b/sys-libs/glibc/glibc-2.6.ebuild index 85d23d6209bf..4a679c872513 100644 --- a/sys-libs/glibc/glibc-2.6.ebuild +++ b/sys-libs/glibc/glibc-2.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.6.ebuild,v 1.10 2007/07/14 23:01:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.6.ebuild,v 1.11 2007/07/15 19:16:39 vapier Exp $ # Here's how the cross-compile logic breaks down ... # CTARGET - machine that will target the binaries @@ -1213,7 +1213,7 @@ src_strip() { env \ -uRESTRICT \ CHOST=${CTARGET} \ - STRIP_MASK="/*/{,tls/}{ld-,lib{pthread,thread_db}}*" \ + STRIP_MASK="/*/{,tls/}libthread_db*" \ prepallstrip } |