diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-05 03:36:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-05 03:36:44 +0000 |
commit | d4298e2cda60016c3c91fa13e6f68599dd625d5e (patch) | |
tree | 87bfa68daa7ffbcd463af40ce4613c8c9c56df96 /sys-devel | |
parent | punt has_ssp usage #100974 (diff) | |
download | gentoo-2-d4298e2cda60016c3c91fa13e6f68599dd625d5e.tar.gz gentoo-2-d4298e2cda60016c3c91fa13e6f68599dd625d5e.tar.bz2 gentoo-2-d4298e2cda60016c3c91fa13e6f68599dd625d5e.zip |
screw around with ABI a bit more
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-devel')
-rwxr-xr-x | sys-devel/crossdev/files/crossdev | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-devel/crossdev/files/crossdev b/sys-devel/crossdev/files/crossdev index ea649e5267e7..0445204f9538 100755 --- a/sys-devel/crossdev/files/crossdev +++ b/sys-devel/crossdev/files/crossdev @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.28 2005/07/25 23:00:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/crossdev/files/crossdev,v 1.29 2005/08/05 03:36:44 vapier Exp $ if [[ ${ROOT:-/} != "/" ]] ; then echo "Sorry, but crossdev does not support ROOT." @@ -375,9 +375,6 @@ doemerge() { eend 0 } -# make sure multilib crap doesn't screw us over -export ABI="this-abi-var-sucks" - # we include the '-u' so that we don't re-emerge packages EOPTS="${UOPTS} -u --nodeps" @@ -385,6 +382,10 @@ ex_fast || { doemerge ${BPKG} is_s1 || exit 0 + +# make sure multilib crap doesn't screw us over +export ABI="this-abi-var-sucks" + USE="-boundschecking -fortran -gcj -objc nocxx -static" \ doemerge ${GPKG} ${GPKG}-stage1 is_s2 || exit 0 |