[llvm] r174021 - build: @ENABLE_THREADS@ => @LLVM_ENABLE_THREADS@

Saleem Abdulrasool compnerd at compnerd.org
Wed Jan 30 17:34:59 PST 2013


Author: compnerd
Date: Wed Jan 30 19:34:59 2013
New Revision: 174021

URL: http://llvm.org/viewvc/llvm-project?rev=174021&view=rev
Log:
build: @ENABLE_THREADS@ => @LLVM_ENABLE_THREADS@

Makefile.config does not have the value for ENABLE_THREADS substituted as the
variable is called LLVM_ENABLE_THREADS within configure.ac.  This was pointed
out by zygoloid over IRC.

Modified:
    llvm/trunk/Makefile.config.in

Modified: llvm/trunk/Makefile.config.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.config.in?rev=174021&r1=174020&r2=174021&view=diff
==============================================================================
--- llvm/trunk/Makefile.config.in (original)
+++ llvm/trunk/Makefile.config.in Wed Jan 30 19:34:59 2013
@@ -291,7 +291,7 @@ ENABLE_DOCS = @ENABLE_DOCS@
 ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
 
 # Do we want to enable threads?
-ENABLE_THREADS := @ENABLE_THREADS@
+ENABLE_THREADS := @LLVM_ENABLE_THREADS@
 
 # Do we want to build with position independent code?
 ENABLE_PIC := @ENABLE_PIC@





More information about the llvm-commits mailing list