From 40e55ab780428e132c06fb079c9cdf4865cb39d8 Mon Sep 17 00:00:00 2001 From: Alexander Neundorf Date: Fri, 10 Aug 2007 09:20:14 -0400 Subject: BUG: fix compiler id test on cygwin Alex --- Modules/CMakeDetermineCompilerId.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake index 4179a49..f212c5d 100644 --- a/Modules/CMakeDetermineCompilerId.cmake +++ b/Modules/CMakeDetermineCompilerId.cmake @@ -6,13 +6,13 @@ MACRO(CMAKE_DETERMINE_COMPILER_ID lang flagvar src) # Store the compiler identification source file. SET(CMAKE_${lang}_COMPILER_ID_SRC "${src}") - IF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_CYGWIN) + IF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_UNIX) # This seems to escape spaces: #FILE(TO_NATIVE_PATH "${CMAKE_${lang}_COMPILER_ID_SRC}" # CMAKE_${lang}_COMPILER_ID_SRC) STRING(REGEX REPLACE "/" "\\\\" CMAKE_${lang}_COMPILER_ID_SRC "${CMAKE_${lang}_COMPILER_ID_SRC}") - ENDIF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_CYGWIN) + ENDIF(CMAKE_HOST_WIN32 AND NOT CMAKE_HOST_UNIX) # Make sure user-specified compiler flags are used. IF(CMAKE_${lang}_FLAGS) -- cgit v0.12