diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-09-01 04:48:37 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-09-01 04:48:37 +0000 |
commit | 0fe90b43b233e03a46ca84f6208bc901a92a5518 (patch) | |
tree | 822cbfe849805796078a42fb86a7af2eddc4a6f1 /scripts/bootstrap.sh | |
parent | spython upgrades/fixes (diff) | |
download | gentoo-2-0fe90b43b233e03a46ca84f6208bc901a92a5518.tar.gz gentoo-2-0fe90b43b233e03a46ca84f6208bc901a92a5518.tar.bz2 gentoo-2-0fe90b43b233e03a46ca84f6208bc901a92a5518.zip |
fixes for bootstrap
Diffstat (limited to 'scripts/bootstrap.sh')
-rwxr-xr-x | scripts/bootstrap.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 67a64e014067..eaa47ccfdb7c 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -35,7 +35,8 @@ export MAKEOPTS="`spython -c 'import portage; print portage.settings["MAKEOPTS"] export CONFIG_PROTECT="" #above allows portage to overwrite stuff cd /usr/portage -emerge --pretend $myPORTAGE $myBINUTILS $myGCC $myGETTEXT || exit +emerge $myPORTAGE #separate, so that the next command uses the *new* emerge +emerge $myBINUTILS $myGCC $myGETTEXT || exit if [ "$use_unset" = "yes" ] then unset USE @@ -44,6 +45,6 @@ else fi # This line should no longer be required #export USE="`spython -c 'import portage; print portage.settings["USE"];'` bootstrap" -emerge --pretend $myGLIBC $myGETTEXT $myBINUTILS $myGCC || exit +emerge $myGLIBC $myGETTEXT $myBINUTILS $myGCC || exit #restore settings cp /etc/make.conf.build /etc/make.conf |