diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2003-06-06 06:16:36 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2003-06-06 06:16:36 +0000 |
commit | 85728d1d38f2b79c7ce0963c0f33c5ab32003adf (patch) | |
tree | c80dfe0f156073693ec6cef5b229416b9a19d6d5 /scripts | |
parent | added comments (diff) | |
download | gentoo-2-85728d1d38f2b79c7ce0963c0f33c5ab32003adf.tar.gz gentoo-2-85728d1d38f2b79c7ce0963c0f33c5ab32003adf.tar.bz2 gentoo-2-85728d1d38f2b79c7ce0963c0f33c5ab32003adf.zip |
removed references to command-line args
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 0f67778cb23f..63b3d56d52a9 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,7 @@ #!/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.45 2003/06/06 06:14:47 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.46 2003/06/06 06:16:36 drobbins Exp $ # IMPORTANT NOTE: # This script no longer accepts an optional argument. @@ -44,16 +44,13 @@ then source /etc/profile fi -if [ "$!" = "" ] -then - echo - echo -e "${GOOD}Gentoo Linux${GENTOO_VERS}; \e[34;01mhttp://www.gentoo.org/${NORMAL}" - echo -e " Copyright 2001-2003 Gentoo Technologies, Inc.; Distributed under the GPL" - echo - einfo "Starting Bootstrap of base system ..." - echo - echo -fi +echo +echo -e "${GOOD}Gentoo Linux${GENTOO_VERS}; \e[34;01mhttp://www.gentoo.org/${NORMAL}" +echo -e " Copyright 2001-2003 Gentoo Technologies, Inc.; Distributed under the GPL" +echo +einfo "Starting Bootstrap of base system ..." +echo +echo # This should not be set to get glibc to build properly. See bug #7652. LD_LIBRARY_PATH="" @@ -87,7 +84,7 @@ INVALID_USE="`gawk -v ORIGUSE="${ORIGUSE}" ' }'`" # Do not do the check for stage build scripts ... -if [ "$1" = "" ] && [ "${INVALID_USE}" = "yes" ] +if [ "${INVALID_USE}" = "yes" ] then echo eerror "You have 'build' or 'bootstrap' in your USE flags! Please" |