diff options
-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 |