diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 15:38:29 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 15:38:29 +0000 |
commit | e7fb3e1c70acb567737b5ce528809485cd6116e3 (patch) | |
tree | b76f8ab82419f9433adcd04dfba051fd1a2e61aa /sys-libs | |
parent | Convert "hasq" to "has" and "useq" to "use". (diff) | |
download | gentoo-2-e7fb3e1c70acb567737b5ce528809485cd6116e3.tar.gz gentoo-2-e7fb3e1c70acb567737b5ce528809485cd6116e3.tar.bz2 gentoo-2-e7fb3e1c70acb567737b5ce528809485cd6116e3.zip |
Convert "hasq" to "has".
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/glibc/ChangeLog | 6 | ||||
-rw-r--r-- | sys-libs/glibc/files/eblits/src_install.eblit | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index bdbfbc6a7808..3b63c21b791d 100644 --- a/sys-libs/glibc/ChangeLog +++ b/sys-libs/glibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-libs/glibc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.779 2011/07/05 06:00:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.780 2011/07/08 15:38:29 ssuominen Exp $ + + 08 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> + files/eblits/src_install.eblit: + Convert "hasq" to "has". *glibc-2.13-r3 (05 Jul 2011) diff --git a/sys-libs/glibc/files/eblits/src_install.eblit b/sys-libs/glibc/files/eblits/src_install.eblit index a134e5618f17..7cc838a5e741 100644 --- a/sys-libs/glibc/files/eblits/src_install.eblit +++ b/sys-libs/glibc/files/eblits/src_install.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install.eblit,v 1.14 2011/03/18 20:25:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install.eblit,v 1.15 2011/07/08 15:38:29 ssuominen Exp $ toolchain-glibc_src_install() { local GBUILDDIR @@ -192,7 +192,7 @@ src_strip() { # gdb is lame and requires some debugging information to remain in # libpthread, so we need to strip it by hand. libthread_db makes no # sense stripped as it is only used when debugging. - local pthread=$(hasq splitdebug ${FEATURES} && echo "libthread_db" || echo "lib{pthread,thread_db}") + local pthread=$(has splitdebug ${FEATURES} && echo "libthread_db" || echo "lib{pthread,thread_db}") env \ -uRESTRICT \ CHOST=${CTARGET} \ @@ -200,7 +200,7 @@ src_strip() { prepallstrip # if user has stripping enabled and does not have split debug turned on, # then leave the debugging sections in libpthread. - if ! hasq nostrip ${FEATURES} && ! hasq splitdebug ${FEATURES} ; then + if ! has nostrip ${FEATURES} && ! has splitdebug ${FEATURES} ; then ${STRIP:-${CTARGET}-strip} --strip-debug "${D}"/*/libpthread-*.so fi } |