summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-08-10 09:20:14 -0400
committerAlexander Neundorf <neundorf@kde.org>2007-08-10 09:20:14 -0400
commit40e55ab780428e132c06fb079c9cdf4865cb39d8 (patch)
tree344acf83646c21abd7942657f8a7f0cdb5f93ec2
parent512e0d40efbefefdd8296bbdb84be56597b072f2 (diff)
downloadcmake-40e55ab780428e132c06fb079c9cdf4865cb39d8.tar.gz
BUG: fix compiler id test on cygwin
Alex
-rw-r--r--Modules/CMakeDetermineCompilerId.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/CMakeDetermineCompilerId.cmake b/Modules/CMakeDetermineCompilerId.cmake
index 4179a497ae..f212c5d30d 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)