From d455eeb6d7f178df4b8b199af540626a26722bb6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 2 Oct 2009 13:24:32 -0400 Subject: Fix typo in Intel xiar search code This renames the variable '_intel_xair_hints' to '_intel_xiar_hints'. --- Modules/Platform/Linux-Intel.cmake | 6 +++--- 1 file 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) -- cgit v0.12