summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindZIP.cmake10
1 files changed, 5 insertions, 5 deletions
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)