Skip to content
Snippets Groups Projects
Commit 1ec22fd3 authored by Chris Bieneman's avatar Chris Bieneman
Browse files

NFC. Fixing my consistently incorrect spelling.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253937 91177308-0d34-0410-b5e6-96231b3b80d8
parent c3a196b7
No related branches found
No related tags found
No related merge requests found
...@@ -664,21 +664,21 @@ if (CLANG_ENABLE_BOOTSTRAP) ...@@ -664,21 +664,21 @@ if (CLANG_ENABLE_BOOTSTRAP)
# Find all variables that start with BOOTSTRAP_ and populate a variable with # Find all variables that start with BOOTSTRAP_ and populate a variable with
# them. # them.
get_cmake_property(variableNames VARIABLES) get_cmake_property(variableNames VARIABLES)
foreach(varaibleName ${variableNames}) foreach(variableName ${variableNames})
if(varaibleName MATCHES "^BOOTSTRAP_") if(variableName MATCHES "^BOOTSTRAP_")
string(SUBSTRING ${varaibleName} 10 -1 varName) string(SUBSTRING ${variableName} 10 -1 varName)
string(REPLACE ";" "\;" value "${${varaibleName}}") string(REPLACE ";" "\;" value "${${variableName}}")
list(APPEND PASSTHROUGH_VARIABLES list(APPEND PASSTHROUGH_VARIABLES
-D${varName}=${value}) -D${varName}=${value})
endif() endif()
endforeach() endforeach()
# Populate the passthrough variables # Populate the passthrough variables
foreach(varaibleName ${CLANG_BOOTSTRAP_PASSTHROUGH} ${BOOTSTRAP_DEFAULT_PASSTHROUGH}) foreach(variableName ${CLANG_BOOTSTRAP_PASSTHROUGH} ${BOOTSTRAP_DEFAULT_PASSTHROUGH})
if(${varaibleName}) if(${variableName})
string(REPLACE ";" "\;" value ${${varaibleName}}) string(REPLACE ";" "\;" value ${${variableName}})
list(APPEND PASSTHROUGH_VARIABLES list(APPEND PASSTHROUGH_VARIABLES
-D${varaibleName}=${value}) -D${variableName}=${value})
endif() endif()
endforeach() endforeach()
......
...@@ -47,11 +47,11 @@ if(LLVM_BUILD_EXTERNAL_COMPILER_RT AND EXISTS ${COMPILER_RT_SRC_ROOT}/) ...@@ -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 # Find all variables that start with COMPILER_RT and populate a variable with
# them. # them.
get_cmake_property(variableNames VARIABLES) get_cmake_property(variableNames VARIABLES)
foreach(varaibleName ${variableNames}) foreach(variableName ${variableNames})
if(varaibleName MATCHES "^COMPILER_RT") if(variableName MATCHES "^COMPILER_RT")
string(REPLACE ";" "\;" value "${${varaibleName}}") string(REPLACE ";" "\;" value "${${variableName}}")
list(APPEND COMPILER_RT_PASSTHROUGH_VARIABLES list(APPEND COMPILER_RT_PASSTHROUGH_VARIABLES
-D${varaibleName}=${${value}}) -D${variableName}=${${value}})
endif() endif()
endforeach() endforeach()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment