diff options
author | Chris Bieneman <beanz@apple.com> | 2015-11-23 23:34:13 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-11-23 23:34:13 +0000 |
commit | 1ec22fd3823ad237b45a972345e0d9eafceeea6b (patch) | |
tree | 6ec31e67805b01c59f7b20e8727575090988a342 /runtime/CMakeLists.txt | |
parent | c3a196b7398a8dc3bb832daccf87ed5c261427a3 (diff) | |
download | clang-1ec22fd3823ad237b45a972345e0d9eafceeea6b.tar.gz |
NFC. Fixing my consistently incorrect spelling.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/CMakeLists.txt')
-rw-r--r-- | runtime/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index 5ca20c9207..1f6455c90c 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -47,11 +47,11 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/) # Find all variables that start with COMPILER_RT and populate a variable with # them. get_cmake_property(variableNames VARIABLES) - foreach(varaibleName ${variableNames}) - if(varaibleName MATCHES "^COMPILER_RT") - string(REPLACE ";" "\;" value "${${varaibleName}}") + foreach(variableName ${variableNames}) + if(variableName MATCHES "^COMPILER_RT") + string(REPLACE ";" "\;" value "${${variableName}}") list(APPEND COMPILER_RT_PASSTHROUGH_VARIABLES - -D${varaibleName}=${${value}}) + -D${variableName}=${${value}}) endif() endforeach() |