diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-01-31 01:34:59 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-01-31 01:34:59 +0000 |
commit | 11486ffd5ad0d51d9ba338b9c0596d2164e41711 (patch) | |
tree | fff263b517d28ee1fd281a4f56f7b06bfacb5105 /Makefile.config.in | |
parent | 47896090f30fe9f37a776b46e285b1d6d8b1ad9b (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 599ffb0006..f0f2e0d9ec 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -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@ |