diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-01 14:14:47 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-01 14:14:47 +0000 |
commit | 3a252be7bc012726643a6c062f5a68a64e21f552 (patch) | |
tree | 24db28647cb5d7d56795ae80366343c042992c18 /eclass/toolchain-binutils.eclass | |
parent | Set new homepage http://www.kipi-plugins.org/ (diff) | |
download | gentoo-2-3a252be7bc012726643a6c062f5a68a64e21f552.tar.gz gentoo-2-3a252be7bc012726643a6c062f5a68a64e21f552.tar.bz2 gentoo-2-3a252be7bc012726643a6c062f5a68a64e21f552.zip |
disable secure-plt for alpha for now
Diffstat (limited to 'eclass/toolchain-binutils.eclass')
-rw-r--r-- | eclass/toolchain-binutils.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass index 755e764cc3a4..52630da88525 100644 --- a/eclass/toolchain-binutils.eclass +++ b/eclass/toolchain-binutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.67 2006/12/30 11:23:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.68 2007/01/01 14:14:47 vapier Exp $ # We install binutils into CTARGET-VERSION specific directories. This lets # us easily merge multiple versions for multiple targets (if we wish) and @@ -177,6 +177,8 @@ toolchain-binutils_src_compile() { use multitarget && myconf="${myconf} --enable-targets=all" [[ -n ${CBUILD} ]] && myconf="${myconf} --build=${CBUILD}" is_cross && myconf="${myconf} --with-sysroot=/usr/${CTARGET}" +# glibc-2.3.6 lacks support for this ... +# --enable-secureplt myconf="--prefix=/usr \ --host=${CHOST} \ --target=${CTARGET} \ @@ -187,7 +189,6 @@ toolchain-binutils_src_compile() { --libdir=${LIBPATH} \ --libexecdir=${LIBPATH} \ --includedir=${INCPATH} \ - --enable-secureplt \ --enable-64-bit-bfd \ --enable-shared \ --disable-werror \ |