[cmake-commits] hoffman committed FindDoxygen.cmake 1.13 1.14

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Dec 4 19:37:31 EST 2006


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

Modified Files:
	FindDoxygen.cmake 
Log Message:
ENH: fix for backwards compatibility


Index: FindDoxygen.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/FindDoxygen.cmake,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- FindDoxygen.cmake	4 Dec 2006 16:52:46 -0000	1.13
+++ FindDoxygen.cmake	5 Dec 2006 00:37:29 -0000	1.14
@@ -26,9 +26,9 @@
 # For backwards compatibility support
 # DOXYGEN_FIND_QUIETLY, but it should have been
 # Doxygen_FIND_QUIETLY.  
-IF(DOXYGEN_FIND_QUIETLY)
-  SET(Doxygen_FIND_QUIETLY)
-ENDIF(DOXYGEN_FIND_QUIETLY)
+IF(Doxygen_FIND_QUIETLY)
+  SET(DOXYGEN_FIND_QUIETLY TRUE)
+ENDIF(Doxygen_FIND_QUIETLY)
 
 IF (NOT DOXYGEN_FIND_QUIETLY)
   MESSAGE(STATUS "Looking for doxygen...")



More information about the Cmake-commits mailing list