diff options
author | Travis Tilley <lv@gentoo.org> | 2004-09-25 16:33:54 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-09-25 16:33:54 +0000 |
commit | ad717ae778120f15bd4f811d4499c178bf06e1c3 (patch) | |
tree | 68561e9eb410abb480213e6ea87cc134f6af6fba /eclass | |
parent | New official release version (diff) | |
download | historical-ad717ae778120f15bd4f811d4499c178bf06e1c3.tar.gz historical-ad717ae778120f15bd4f811d4499c178bf06e1c3.tar.bz2 historical-ad717ae778120f15bd4f811d4499c178bf06e1c3.zip |
DAMN YOU UCLIBC!
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/toolchain.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 6d08f4cba4d9..3c781d6d1d85 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -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/eclass/toolchain.eclass,v 1.19 2004/09/23 20:13:38 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.20 2004/09/25 16:33:54 lv Exp $ # # This eclass should contain general toolchain-related functions that are # expected to not change, or change much. @@ -320,10 +320,6 @@ gcc_quick_unpack() { unpack ${PIE_CORE} fi - # Fixup libtool to correctly generate .la files with portage - cd ${S} - elibtoolize --portage --shallow - popd > /dev/null } @@ -609,6 +605,10 @@ gcc_src_unpack() { # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14992 (May 3 2004) sed -i -e s/HAVE_LD_AS_NEEDED/USE_LD_AS_NEEDED/g ${S}/gcc/config.in + # Fixup libtool to correctly generate .la files with portage + cd ${S} + elibtoolize --portage --shallow + gnuconfig_update cd ${S}; ./contrib/gcc_update --touch &> /dev/null |