Fixed issue where nightly test always tells you you need to use -nickname

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29241 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Patrick Jenkins 2006-07-21 01:39:42 +00:00
parent 1f556c29e3
commit 49717a4ee5

View File

@ -106,7 +106,7 @@ my $TestStartTime = gmtime() . "GMT<br>" . localtime() . " (local)";
#
##############################################################
$CONFIGUREARGS="";
$nickname="";
$NOTEST=0;
$NORUNNINGTESTS=0;
@ -139,7 +139,6 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
$CONFIGUREARGS .= "--with-externals=$ARGV[0]"; shift; next;
}
if (/^-nickname$/) { $nickname = "$ARGV[0]"; shift; next; }
else{ $nickname=""; }
if (/^-gccpath/) { $CONFIGUREARGS .=
" CC=$ARGV[0]/gcc CXX=$ARGV[0]/g++";
$GCCPATH=$ARGV[0];