aboutsummaryrefslogtreecommitdiff
path: root/clang/runtime
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2015-12-03 19:47:25 +0000
committerChris Bieneman <beanz@apple.com>2015-12-03 19:47:25 +0000
commit865c4ee9cbdf5824103bdaf405b35dd447a14868 (patch)
treea39778669f2dba7c38d476823ac628a81ed9ed56 /clang/runtime
parent4b44a763413e204749316267a209fa6cab022896 (diff)
[CMake] Removing an unnecessary layer of variable indirection
This prevents passthrough variables from having values. llvm-svn: 254642
Diffstat (limited to 'clang/runtime')
-rw-r--r--clang/runtime/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/runtime/CMakeLists.txt b/clang/runtime/CMakeLists.txt
index 1f6455c90cba..27f028efc635 100644
--- a/clang/runtime/CMakeLists.txt
+++ b/clang/runtime/CMakeLists.txt
@@ -51,7 +51,7 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/)
if(variableName MATCHES "^COMPILER_RT")
string(REPLACE ";" "\;" value "${${variableName}}")
list(APPEND COMPILER_RT_PASSTHROUGH_VARIABLES
- -D${variableName}=${${value}})
+ -D${variableName}=${value})
endif()
endforeach()