diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-03-12 19:47:24 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-03-12 19:47:24 +0000 |
commit | 85cdfad07f14aac778534ef2067da485d2214b48 (patch) | |
tree | 0b8dfdfdb634a4b65ad394c076ecd4e7c72b95c4 | |
parent | ae5a20a9177650525b40ed88c8326a398e6caa8a (diff) |
Fix an inconsistent use of LLVMGCCDIR. In all other cases, this directory
refers to the "prefix" directory, i.e., one level above "bin". LLVMGCCPATH
is used as the directory containing the llvm-gcc executable, so add a "/bin"
suffix to get from LLVMGCCDIR to LLVMGCCPATH.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66823 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NewNightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 98f6158ec4..235ce8bfdf 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -197,7 +197,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { if ($ENV{'LLVMGCCDIR'}) { $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'}; - $LLVMGCCPATH = $ENV{'LLVMGCCDIR'}; + $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin'; } else { $LLVMGCCPATH = ""; |