summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-11-09 12:18:06 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2007-11-09 12:18:06 -0500
commitbb82b4871583f61766028e340e0e088616c62db7 (patch)
tree9b48baa324b0bfcb101d896b9374275dee1c67d1
parentf9322d188bf8f441a2511ae060bd2a56439deec7 (diff)
downloadcmake-bb82b4871583f61766028e340e0e088616c62db7.tar.gz
ENH: change name
-rw-r--r--Modules/InstallRequiredSystemLibraries.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake
index ceac50c718..dcc6107aff 100644
--- a/Modules/InstallRequiredSystemLibraries.cmake
+++ b/Modules/InstallRequiredSystemLibraries.cmake
@@ -122,13 +122,13 @@ ENDIF(MSVC)
# Include system runtime libraries in the installation if any are
# specified by CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS.
IF(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS)
- IF(NOT CMAKE_SKIP_INSTALL_RULES)
+ IF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP)
IF(WIN32)
INSTALL_PROGRAMS(/bin ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS})
ELSE(WIN32)
INSTALL_PROGRAMS(/lib ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS})
ENDIF(WIN32)
- ENDIF(NOT CMAKE_SKIP_INSTALL_RULES)
+ ENDIF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP)
ENDIF(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS)