diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-06-27 20:30:28 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-06-27 20:30:28 +0000 |
commit | 14c299ebca7c3368e4345568bc24b1f6d52fe124 (patch) | |
tree | 74ac3532376ca2638708e2796bfa26bc33f4da29 | |
parent | 9f029a61e91b83c89b221bfce75d16a5442340c7 (diff) |
Fix -extraflags
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28937 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 3f6e47b5d3..3592f1d7ae 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -334,7 +334,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; } if (/^-extraflags/) { - $PROGTESTOPTS .= " EXTRA_OPTIONS=\'$ARGV[0]\'"; shift; next; + $CONFIGUREARGS .= " --with-extra-options=\'$ARGV[0]\'"; shift; next; } if (/^-noexternals$/) { $NOEXTERNALS = 1; next; } if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; } |