[libcxx] r280407 - [CMake] NFC. Missed the other uses in r280406
Chris Bieneman via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 1 12:47:39 PDT 2016
Author: cbieneman
Date: Thu Sep 1 14:47:39 2016
New Revision: 280407
URL: http://llvm.org/viewvc/llvm-project?rev=280407&view=rev
Log:
[CMake] NFC. Missed the other uses in r280406
Doh! Obviously need to slow down.
Modified:
libcxx/trunk/cmake/Modules/HandleOutOfTreeLLVM.cmake
Modified: libcxx/trunk/cmake/Modules/HandleOutOfTreeLLVM.cmake
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/cmake/Modules/HandleOutOfTreeLLVM.cmake?rev=280407&r1=280406&r2=280407&view=diff
==============================================================================
--- libcxx/trunk/cmake/Modules/HandleOutOfTreeLLVM.cmake (original)
+++ libcxx/trunk/cmake/Modules/HandleOutOfTreeLLVM.cmake Thu Sep 1 14:47:39 2016
@@ -67,10 +67,10 @@ if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRE
# The intent is that this doesn't necessarily mean the LLVM is installed (it
# could be a build directory), but it means we need to treat the LLVM
# directory as read-only.
- set(LIBCXX_USING_INSTLLED_LLVM 1)
+ set(LIBCXX_USING_INSTALLED_LLVM 1)
endif()
-if (LIBCXX_USING_INSTLLED_LLVM OR LIBCXX_STANDALONE_BUILD)
+if (LIBCXX_USING_INSTALLED_LLVM OR LIBCXX_STANDALONE_BUILD)
set(LIBCXX_STANDALONE_BUILD 1)
message(STATUS "Configuring for standalone build.")
More information about the cfe-commits
mailing list