[CMake] Forgot to quote the first part of STREQUAL.
authorChris Bieneman <beanz@apple.com>
Tue, 14 Jul 2015 01:19:07 +0000 (01:19 +0000)
committerChris Bieneman <beanz@apple.com>
Tue, 14 Jul 2015 01:19:07 +0000 (01:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242103 91177308-0d34-0410-b5e6-96231b3b80d8

cmake/modules/AddLLVM.cmake

index ff0ce761e7430970dffa04f2560c2b679c1672b1..5e13b1751bbd0516299783b8c5de37ff680c76a8 100644 (file)
@@ -691,7 +691,7 @@ macro(add_llvm_external_project name)
   string(TOUPPER ${nameUNDERSCORE} nameUPPER)
   #TODO: Remove this check in a few days once it has circulated through
   # buildbots and people's checkouts (cbieneman - July 14, 2015)
   string(TOUPPER ${nameUNDERSCORE} nameUPPER)
   #TODO: Remove this check in a few days once it has circulated through
   # buildbots and people's checkouts (cbieneman - July 14, 2015)
-  if(${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR} STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir}")
+  if("${LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}/${add_llvm_external_dir}")
     unset(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR CACHE)
   endif()
   if(NOT LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR)
     unset(LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR CACHE)
   endif()
   if(NOT LLVM_EXTERNAL_${nameUPPER}_SOURCE_DIR)