[cmake-commits] hoffman committed InstallRequiredSystemLibraries.cmake 1.9 1.10

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Nov 9 12:18:09 EST 2007


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv28465

Modified Files:
	InstallRequiredSystemLibraries.cmake 
Log Message:
ENH: change name


Index: InstallRequiredSystemLibraries.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/InstallRequiredSystemLibraries.cmake,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- InstallRequiredSystemLibraries.cmake	9 Nov 2007 01:37:32 -0000	1.9
+++ InstallRequiredSystemLibraries.cmake	9 Nov 2007 17:18:06 -0000	1.10
@@ -122,13 +122,13 @@
 # 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)
 
 



More information about the Cmake-commits mailing list