diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-09-19 17:07:52 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-09-19 17:07:52 +0000 |
commit | fe3ab728885d60f7dc0f91ae9a70c0347468663f (patch) | |
tree | 0f804d659c9ee4ace1774f7ee36d2d7f3b28dc98 /sys-libs | |
parent | Add patch for experimental progress bar module. Bug #380093 thanks to Richard... (diff) | |
download | gentoo-2-fe3ab728885d60f7dc0f91ae9a70c0347468663f.tar.gz gentoo-2-fe3ab728885d60f7dc0f91ae9a70c0347468663f.tar.bz2 gentoo-2-fe3ab728885d60f7dc0f91ae9a70c0347468663f.zip |
Disable forced --hash-style=both linker flags from configure.
(Portage version: 2.2.0_alpha58/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_compile.eblit | 7 |
2 files changed, 11 insertions, 2 deletions
diff --git a/sys-libs/glibc/ChangeLog b/sys-libs/glibc/ChangeLog index 1b919bb7e353..f83b477799c5 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.789 2011/09/03 09:11:04 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.790 2011/09/19 17:07:52 vapier Exp $ + + 19 Sep 2011; Mike Frysinger <vapier@gentoo.org> + files/eblits/src_compile.eblit: + Disable forced --hash-style=both linker flags from configure. 03 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org> metadata.xml: Drop unused local descs. diff --git a/sys-libs/glibc/files/eblits/src_compile.eblit b/sys-libs/glibc/files/eblits/src_compile.eblit index dafd2aa51e95..c47c8455ec1e 100644 --- a/sys-libs/glibc/files/eblits/src_compile.eblit +++ b/sys-libs/glibc/files/eblits/src_compile.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_compile.eblit,v 1.17 2011/03/11 02:40:28 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_compile.eblit,v 1.18 2011/09/19 17:07:52 vapier Exp $ glibc_do_configure() { local myconf @@ -92,6 +92,11 @@ glibc_do_configure() { # since the glibc build will re-run configure on itself export libc_cv_slibdir=/$(get_libdir) + # We take care of patching our binutils to use both hash styles, + # and many people like to force gnu hash style only, so disable + # this overriding check. #347761 + export libc_cv_hashstyle=no + local GBUILDDIR=${WORKDIR}/build-${ABI}-${CTARGET}-$1 mkdir -p "${GBUILDDIR}" cd "${GBUILDDIR}" |