diff options
author | Patrick Jenkins <pjenkins@apple.com> | 2006-07-27 01:24:35 +0000 |
---|---|---|
committer | Patrick Jenkins <pjenkins@apple.com> | 2006-07-27 01:24:35 +0000 |
commit | 9f5ea5dc5af7c8b65b78fcb6fbf5c2dbf69023d3 (patch) | |
tree | 9342ded65eaf664a2f38ea38ddd0e88bd567b100 | |
parent | 10d0e3400104048c7aa27f5c7f70b800917de0d5 (diff) | |
download | llvm-9f5ea5dc5af7c8b65b78fcb6fbf5c2dbf69023d3.zip llvm-9f5ea5dc5af7c8b65b78fcb6fbf5c2dbf69023d3.tar.gz llvm-9f5ea5dc5af7c8b65b78fcb6fbf5c2dbf69023d3.tar.bz2 |
I made a stupid mistake when adding support for -use-gmake. ~PJ
llvm-svn: 29321
-rwxr-xr-x | llvm/utils/NewNightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/NewNightlyTest.pl b/llvm/utils/NewNightlyTest.pl index 5216bd5..59b460b 100755 --- a/llvm/utils/NewNightlyTest.pl +++ b/llvm/utils/NewNightlyTest.pl @@ -166,7 +166,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; } if (/^-use-gmake/) { - $MAKECMD = "ARGV[0]"; shift; next; + $MAKECMD = "gmake"; shift; next; } if (/^-extraflags/) { $PROGTESTOPTS .= " EXTRA_FLAGS=\'$ARGV[0]\'"; shift; next; |