Skip to content

Commit 47033ca

Browse files
author
Chris Bieneman
committed
[CMake] Fixing a typo in a CMake option
CMake defines are set with -D, forgetting the D doesn’t work. llvm-svn: 271937
1 parent 02458c2 commit 47033ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/runtime/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/)
8282
-DCOMPILER_RT_INSTALL_PATH:STRING=lib${LLVM_LIBDIR_SUFFIX}/clang/${CLANG_VERSION}
8383
-DCOMPILER_RT_INCLUDE_TESTS=${LLVM_INCLUDE_TESTS}
8484
-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX}
85-
-LLVM_LIBDIR_SUFFIX=${LLVM_LIBDIR_SUFFIX}
85+
-DLLVM_LIBDIR_SUFFIX=${LLVM_LIBDIR_SUFFIX}
8686
-Dcmake_3_2_USES_TERMINAL=${cmake_3_2_USES_TERMINAL}
8787
${COMPILER_RT_PASSTHROUGH_VARIABLES}
8888
INSTALL_COMMAND ""

0 commit comments

Comments
 (0)