diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-08-02 17:51:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-08-02 17:51:51 +0000 |
commit | a36bb6d0dc97e19bc3daf12851bf9b76949e62be (patch) | |
tree | e314752c04fca93f2fbed8abd69396c2be913be9 /scripts | |
parent | Stable on hppa wrt #58612 (diff) | |
download | historical-a36bb6d0dc97e19bc3daf12851bf9b76949e62be.tar.gz historical-a36bb6d0dc97e19bc3daf12851bf9b76949e62be.tar.bz2 historical-a36bb6d0dc97e19bc3daf12851bf9b76949e62be.zip |
support STAGE1_USE
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/bootstrap-cascade.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bootstrap-cascade.sh b/scripts/bootstrap-cascade.sh index 21a39127412b..d1e2e7fe4194 100644 --- a/scripts/bootstrap-cascade.sh +++ b/scripts/bootstrap-cascade.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2004 Gento Foundation. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-cascade.sh,v 1.9 2004/07/23 20:34:22 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-cascade.sh,v 1.10 2004/08/02 17:51:51 vapier Exp $ # drobbins optimized this script at some point which made a bootstrap # to complete 20 mins to 2 hours faster, depending on CPU. He did this @@ -185,7 +185,7 @@ echo "Configuring environment..." ENV_EXPORTS="GENTOO_MIRRORS PORTDIR DISTDIR PKGDIR PORTAGE_TMPDIR CFLAGS CHOST CXXFLAGS MAKEOPTS ACCEPT_KEYWORDS PROXY HTTP_PROXY - FTP_PROXY FEATURES" + FTP_PROXY FEATURES STAGE1_USE" for opt in ${ENV_EXPORTS}; do val=$(pycmd 'import portage; print portage.settings["'${opt}'"];' ) @@ -208,9 +208,9 @@ export CONFIG_PROTECT="-*" # disable collision-protection export FEATURES="${FEATURES} -collision-protect" -USE="-* build bootstrap" emerge ${STRAP_EMERGE_OPTS} ${myPORTAGE} || cleanup 1 +USE="-* build bootstrap ${STAGE1_USE}" emerge ${STRAP_EMERGE_OPTS} ${myPORTAGE} || cleanup 1 echo ------------------------------------------------------------------------------- -export USE="${ORIGUSE} bootstrap" +export USE="${ORIGUSE} bootstrap ${STAGE1_USE}" # We can't unmerge headers which may or may not exist yet. If your # trying to use nptl, it may be needed to flush out any old headers |