build: @ENABLE_THREADS@ => @LLVM_ENABLE_THREADS@
authorSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 31 Jan 2013 01:34:59 +0000 (01:34 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Thu, 31 Jan 2013 01:34:59 +0000 (01:34 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174021 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.config.in

index 599ffb0006aa31fd17160dfd88f38197bbfe1632..f0f2e0d9ec849dba18427026ca30ac898a45d34a 100644 (file)
@@ -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@