diff options
Diffstat (limited to 'modules/FindLibintl.cmake')
-rw-r--r-- | modules/FindLibintl.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/FindLibintl.cmake b/modules/FindLibintl.cmake index 1ddcbd82..52ae6479 100644 --- a/modules/FindLibintl.cmake +++ b/modules/FindLibintl.cmake @@ -30,11 +30,11 @@ if(LIBINTL_INCLUDE_DIR) if (LIBINTL_LIBC_HAS_DGETTEXT) set(LIBINTL_LIBRARIES) - set(LIBINTL_LIB_FOUND TRUE CACHE BOOL "Libintl found" FORCE) + set(LIBINTL_LIB_FOUND TRUE) else (LIBINTL_LIBC_HAS_DGETTEXT) find_library(LIBINTL_LIBRARIES NAMES intl libintl ) if(LIBINTL_LIBRARIES) - set(LIBINTL_LIB_FOUND TRUE CACHE BOOL "Libintl found" FORCE) + set(LIBINTL_LIB_FOUND TRUE) endif(LIBINTL_LIBRARIES) endif (LIBINTL_LIBC_HAS_DGETTEXT) |