diff options
author | Brad King <brad.king@kitware.com> | 2009-10-02 17:24:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-02 17:24:32 (GMT) |
commit | d455eeb6d7f178df4b8b199af540626a26722bb6 (patch) | |
tree | 12d92ebbd968f5af7009e1d3766ca384609f44e5 /Modules/Platform/Linux-Intel.cmake | |
parent | 211714310301e124ba7083d5e0b4b0b1f9b4bc64 (diff) | |
download | CMake-d455eeb6d7f178df4b8b199af540626a26722bb6.zip CMake-d455eeb6d7f178df4b8b199af540626a26722bb6.tar.gz CMake-d455eeb6d7f178df4b8b199af540626a26722bb6.tar.bz2 |
Fix typo in Intel xiar search code
This renames the variable '_intel_xair_hints' to '_intel_xiar_hints'.
Diffstat (limited to 'Modules/Platform/Linux-Intel.cmake')
-rw-r--r-- | Modules/Platform/Linux-Intel.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/Platform/Linux-Intel.cmake b/Modules/Platform/Linux-Intel.cmake index 030f2c0..e7a67b6 100644 --- a/Modules/Platform/Linux-Intel.cmake +++ b/Modules/Platform/Linux-Intel.cmake @@ -1,11 +1,11 @@ if(NOT XIAR) - set(_intel_xair_hints) + set(_intel_xiar_hints) foreach(lang C CXX Fortran) if(IS_ABSOLUTE "${CMAKE_${lang}_COMPILER}") get_filename_component(_hint "${CMAKE_${lang}_COMPILER}" PATH) - list(APPEND _intel_xair_hints ${_hint}) + list(APPEND _intel_xiar_hints ${_hint}) endif() endforeach() - find_program(XIAR NAMES xiar HINTS ${_intel_xair_hints}) + find_program(XIAR NAMES xiar HINTS ${_intel_xiar_hints}) mark_as_advanced(XIAR) endif(NOT XIAR) |