diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2003-06-06 06:14:47 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2003-06-06 06:14:47 +0000 |
commit | f7f9214bf6c941622a2163775ce19f08db342388 (patch) | |
tree | fb004d911c15ca840a00aeca6006a53ed7a7b3c3 /scripts | |
parent | New bootstrap.sh that no longer compiles gcc and binutils twice. Should reduce (diff) | |
download | historical-f7f9214bf6c941622a2163775ce19f08db342388.tar.gz historical-f7f9214bf6c941622a2163775ce19f08db342388.tar.bz2 historical-f7f9214bf6c941622a2163775ce19f08db342388.zip |
added comments
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index dbb8dedaeb30..0f67778cb23f 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,15 +1,17 @@ #!/bin/bash # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.44 2003/06/06 06:12:11 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.45 2003/06/06 06:14:47 drobbins Exp $ # IMPORTANT NOTE: -# This script now accepts an optional argument. -# Without an argument, it executes normally. -# With a "1.5" argument, it will execute only the first half of the build process. -# With a "2" argument, it will execute only the second half of the build process. -# Please ensure that this is maintained properly, as it is needed for my stage-building tools -# (drobbins, 06 Jan 2003) +# This script no longer accepts an optional argument. +# It was removed by the same person who added it -- me, drobbins -- when I optimized +# bootstrap to complete 20 mins to 2 hours faster, depending on CPU. I did this by +# merging both stages of bootstrap into a single stage. We no longer compile gcc and +# binutils twice. Doing this is unnecessary and a holdover from very early versions +# of Gentoo, where we were being ultra-paranoid. + +# (drobbins, 06 Jun 2003) MYPROFILEDIR="`readlink -f /etc/make.profile`" if [ ! -d ${MYPROFILEDIR} ] |