summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-01-09 17:46:13 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-01-09 17:46:13 (GMT)
commit75a47129025b0b1b8b543aa61feb3b24f438d3a4 (patch)
treef3f371741eacb1f5ae3f86aea38369dc565290dd
parent19e566d3952c19845705587cc1a217b13ef76f09 (diff)
downloadCMake-75a47129025b0b1b8b543aa61feb3b24f438d3a4.zip
CMake-75a47129025b0b1b8b543aa61feb3b24f438d3a4.tar.gz
CMake-75a47129025b0b1b8b543aa61feb3b24f438d3a4.tar.bz2
ENH:
-rw-r--r--Utilities/Release/Release.cmake4
-rwxr-xr-xUtilities/Release/cmake_release.sh.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/Release/Release.cmake b/Utilities/Release/Release.cmake
index 9f4da82..cda5255 100644
--- a/Utilities/Release/Release.cmake
+++ b/Utilities/Release/Release.cmake
@@ -4,7 +4,7 @@
# Search for system runtime libraries based on the platform. This is
# not complete because it is used only for the release process by the
# developers.
-IF(WIN32)
+IF(WIN32 AND NOT CYGWIN)
STRING(REGEX REPLACE "\\\\" "/" SYSTEMROOT "$ENV{SYSTEMROOT}")
FOREACH(lib
"${SYSTEMROOT}/system32/mfc71.dll"
@@ -16,7 +16,7 @@ IF(WIN32)
${CMake_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
ENDIF(EXISTS ${lib})
ENDFOREACH(lib)
-ENDIF(WIN32)
+ENDIF(WIN32 AND NOT CYGWIN)
# Include system runtime libraries in the installation if any are
# specified by CMake_INSTALL_SYSTEM_RUNTIME_LIBS.
diff --git a/Utilities/Release/cmake_release.sh.in b/Utilities/Release/cmake_release.sh.in
index cd63c01..a4f0b51 100755
--- a/Utilities/Release/cmake_release.sh.in
+++ b/Utilities/Release/cmake_release.sh.in
@@ -616,7 +616,7 @@ EOF
# CMake setup.hint file for cygwin setup.exe program
category: Devel
requires: libncurses7 cygwin
-sdesc: "A cross platform build manger"
+sdesc: "A cross platform build manager"
ldesc: "CMake is a cross platform build manager. It allows you to specify build parameters for C and C++ programs in a cross platform manner. For cygwin Makefiles will be generated. CMake is also capable of generating microsoft project files, nmake, and borland makefiles. CMake can also perform system inspection operations like finding installed libraries and header files."
EOF
) &&