[llvm-commits] [llvm] r66823 - /llvm/trunk/utils/NewNightlyTest.pl

Bob Wilson bob.wilson at apple.com
Thu Mar 12 12:47:25 PDT 2009


Author: bwilson
Date: Thu Mar 12 14:47:24 2009
New Revision: 66823

URL: http://llvm.org/viewvc/llvm-project?rev=66823&view=rev
Log:
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.

Modified:
    llvm/trunk/utils/NewNightlyTest.pl

Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=66823&r1=66822&r2=66823&view=diff

==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Thu Mar 12 14:47:24 2009
@@ -197,7 +197,7 @@
 
 if ($ENV{'LLVMGCCDIR'}) {
   $CONFIGUREARGS .= " --with-llvmgccdir=" . $ENV{'LLVMGCCDIR'};
-  $LLVMGCCPATH = $ENV{'LLVMGCCDIR'};
+  $LLVMGCCPATH = $ENV{'LLVMGCCDIR'} . '/bin';
 }
 else {
   $LLVMGCCPATH = "";





More information about the llvm-commits mailing list