summaryrefslogtreecommitdiffstats
path: root/llvm/cmake/modules
diff options
context:
space:
mode:
authorChris Bieneman <beanz@apple.com>2015-11-23 23:34:09 +0000
committerChris Bieneman <beanz@apple.com>2015-11-23 23:34:09 +0000
commit4cb7ab67c93cd768487c9a078b3729b854d585a6 (patch)
treeaa134224c376169977e8815dc718b82517f49edd /llvm/cmake/modules
parent16fcf25eb9a47adfe44917719bd59298b84a4397 (diff)
downloadbcm5719-llvm-4cb7ab67c93cd768487c9a078b3729b854d585a6.tar.gz
bcm5719-llvm-4cb7ab67c93cd768487c9a078b3729b854d585a6.zip
NFC. Fixing my consistently incorrect spelling.
llvm-svn: 253936
Diffstat (limited to 'llvm/cmake/modules')
-rw-r--r--llvm/cmake/modules/LLVMExternalProjectUtils.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/cmake/modules/LLVMExternalProjectUtils.cmake b/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
index 01d5e337b8d..5d8fb71e08b 100644
--- a/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
+++ b/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
@@ -91,11 +91,11 @@ function(llvm_ExternalProject_Add name source_dir)
# 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 "^${nameCanon}")
- string(REPLACE ";" "\;" value "${${varaibleName}}")
+ foreach(variableName ${variableNames})
+ if(variableName MATCHES "^${nameCanon}")
+ string(REPLACE ";" "\;" value "${${variableName}}")
list(APPEND PASSTHROUGH_VARIABLES
- -D${varaibleName}=${${value}})
+ -D${variableName}=${${value}})
endif()
endforeach()
OpenPOWER on IntegriCloud