From: Chris Bieneman Date: Mon, 6 Jun 2016 20:18:38 +0000 (+0000) Subject: [CMake] Fixing a typo in a CMake option X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d987157016dd29a33c364dfee2943d44e9a8128;p=clang [CMake] Fixing a typo in a CMake option CMake defines are set with -D, forgetting the D doesn’t work. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271937 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 712524f226..18e505df33 100644 --- a/runtime/CMakeLists.txt +++ b/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 ""