[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[certi-cvs] certi/scripts FindRTI.cmake
From: |
certi-cvs |
Subject: |
[certi-cvs] certi/scripts FindRTI.cmake |
Date: |
Mon, 27 Oct 2008 09:27:21 +0000 |
CVSROOT: /sources/certi
Module name: certi
Changes by: Petr Gotthard <gotthardp> 08/10/27 09:27:21
Modified files:
scripts : FindRTI.cmake
Log message:
Fixed CMAKE_FIND_LIBRARY_PREFIXES related error on Win32 systems.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/scripts/FindRTI.cmake?cvsroot=certi&r1=1.6&r2=1.7
Patches:
Index: FindRTI.cmake
===================================================================
RCS file: /sources/certi/certi/scripts/FindRTI.cmake,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- FindRTI.cmake 25 Oct 2008 18:34:59 -0000 1.6
+++ FindRTI.cmake 27 Oct 2008 09:27:21 -0000 1.7
@@ -38,7 +38,7 @@
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\MAK Technologies\\MAK RTI 2.2;Location]"
"[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\MAK
RTI 2.2;InstallLocation]")
-SET(RTI_OLD_FIND_LIBRARY_PREFIXES ${CMAKE_FIND_LIBRARY_PREFIXES})
+SET(RTI_OLD_FIND_LIBRARY_PREFIXES "${CMAKE_FIND_LIBRARY_PREFIXES}")
# The MAK RTI has the "lib" prefix even on Windows.
SET(CMAKE_FIND_LIBRARY_PREFIXES "lib" "")
@@ -79,7 +79,7 @@
ENDIF (RTI_INCLUDE_DIR)
# Set the modified system variables back to the original value.
-SET(CMAKE_FIND_LIBRARY_PREFIXES ${RTI_OLD_FIND_LIBRARY_PREFIXES})
+SET(CMAKE_FIND_LIBRARY_PREFIXES "${RTI_OLD_FIND_LIBRARY_PREFIXES}")
IF (RTI_LIBRARY AND RTI_INCLUDE_DIR)
SET(RTI_FOUND TRUE)
@@ -90,4 +90,4 @@
ENDIF (RTI_FIND_REQUIRED)
ENDIF(RTI_LIBRARY AND RTI_INCLUDE_DIR)
-# $Id: FindRTI.cmake,v 1.6 2008/10/25 18:34:59 gotthardp Exp $
+# $Id: FindRTI.cmake,v 1.7 2008/10/27 09:27:21 gotthardp Exp $