From 47033ca521cd7c8a6d047396ecdeacb27486d41d Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Mon, 6 Jun 2016 20:18:38 +0000 Subject: [PATCH] [CMake] Fixing a typo in a CMake option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CMake defines are set with -D, forgetting the D doesn’t work. llvm-svn: 271937 --- clang/runtime/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/runtime/CMakeLists.txt b/clang/runtime/CMakeLists.txt index 712524f226f9..18e505df339f 100644 --- a/clang/runtime/CMakeLists.txt +++ b/clang/runtime/CMakeLists.txt @@ -82,7 +82,7 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/) -DCOMPILER_RT_INSTALL_PATH:STRING=lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION} -DCOMPILER_RT_INCLUDE_TESTS=${LLVM_INCLUDE_TESTS} -DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX} - -LLVM_LIBDIR_SUFFIX=${LLVM_LIBDIR_SUFFIX} + -DLLVM_LIBDIR_SUFFIX=${LLVM_LIBDIR_SUFFIX} -Dcmake_3_2_USES_TERMINAL=${cmake_3_2_USES_TERMINAL} ${COMPILER_RT_PASSTHROUGH_VARIABLES} INSTALL_COMMAND ""