From 2ab1ed0ed358916a6f463d43df465b9499bf8dea Mon Sep 17 00:00:00 2001 From: Tomas Chvatal Date: Thu, 12 Mar 2009 17:41:02 +0100 Subject: Hooops missed some zz :] --- cmake/FindZIP.cmake | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cmake/FindZIP.cmake') diff --git a/cmake/FindZIP.cmake b/cmake/FindZIP.cmake index fd3ae7d..4a40e5c 100644 --- a/cmake/FindZIP.cmake +++ b/cmake/FindZIP.cmake @@ -1,9 +1,9 @@ # - Find zip # Find the native ZIP includes and library # -# ZIP_INCLUDE_DIR - where to find zzip.h, etc. -# ZIP_LIBRARIES - List of libraries when using zzip. -# ZIP_FOUND - True if zzip found. +# ZIP_INCLUDE_DIR - where to find zip.h, etc. +# ZIP_LIBRARIES - List of libraries when using zip. +# ZIP_FOUND - True if zip found. IF (ZIP_INCLUDE_DIR) @@ -14,7 +14,7 @@ ENDIF (ZIP_INCLUDE_DIR) FIND_PATH(ZIP_INCLUDE_DIR zip.h) SET(ZIP_NAMES zip) -FIND_LIBRARY(ZIP_LIBRARY NAMES ${ZZIP_NAMES} ) +FIND_LIBRARY(ZIP_LIBRARY NAMES ${ZIP_NAMES} ) # handle the QUIETLY and REQUIRED arguments and set ZIP_FOUND to TRUE if # all listed variables are TRUE @@ -22,7 +22,7 @@ INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(ZIP DEFAULT_MSG ZIP_LIBRARY ZIP_INCLUDE_DIR) IF(ZIP_FOUND) - SET( ZIP_LIBRARIES ${ZZIP_LIBRARY} ) + SET( ZIP_LIBRARIES ${ZIP_LIBRARY} ) ELSE(ZIP_FOUND) SET(ZIP_FOUND FALSE) IF (ZIP_REQUIRED) -- cgit v1.2.3