1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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

llvm-svn: 29241
This commit is contained in:
Patrick Jenkins 2006-07-21 01:39:42 +00:00
parent 335a1ff9e5
commit e23fc52a3a

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];