summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-02-22 07:13:52 +0000
committerZachary Turner <zturner@google.com>2015-02-22 07:13:52 +0000
commit69fadae8720db819c84a73673e79a7d63139ac45 (patch)
tree779133b4af4134231cbb7d9baae3e002526e1196 /cmake
parentca27e720c32cfa7bb696d2813947548bf972292c (diff)
Really fix the build this time.
I was setting the python variable to "@HAVE_DIA_SDK@", which will always be a string, and will always evaluate to True. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rwxr-xr-xcmake/config-ix.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index 337a5a7da8..fe1d6c9755 100755
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -446,6 +446,8 @@ if( MSVC )
else()
set(HAVE_DIA_SDK 0)
endif()
+else()
+ set(HAVE_DIA_SDK 0)
endif( MSVC )
message("CMake set HAVE_DIA_SDK to ${HAVE_DIA_SDK}")