[llvm-commits] [llvm-gcc-4.2] r103089 - /llvm-gcc-4.2/trunk/build_gcc

Bob Wilson bob.wilson at apple.com
Wed May 5 09:31:25 PDT 2010


Author: bwilson
Date: Wed May  5 11:31:25 2010
New Revision: 103089

URL: http://llvm.org/viewvc/llvm-project?rev=103089&view=rev
Log:
Oops.  Fix an inverted conditional, so that we continue to install links in
/usr by default.

Modified:
    llvm-gcc-4.2/trunk/build_gcc

Modified: llvm-gcc-4.2/trunk/build_gcc
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/build_gcc?rev=103089&r1=103088&r2=103089&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/build_gcc (original)
+++ llvm-gcc-4.2/trunk/build_gcc Wed May  5 11:31:25 2010
@@ -734,7 +734,7 @@
 done
 
 # Backward compatibility: Allow LLVM_BUILT_ROOTS instead of DISABLE_USR_LINKS.
-if [ "x$LLVM_BUILT_ROOTS" == "x" ]; then
+if [ "x$LLVM_BUILT_ROOTS" != "x" ]; then
     DISABLE_USR_LINKS=1
 fi
 # Roots built by B&I, need to include sym links in /usr/bin and /usr/lib





More information about the llvm-commits mailing list