From 942ba80dae253fef93094d178da3ce0abc47da5d Mon Sep 17 00:00:00 2001 From: Kevin Funk Date: Fri, 18 Dec 2015 12:37:19 +0100 Subject: CMake: Cleanup: Strip text from endif/else REVIEW: 126414 --- attic/modules/FindLibintl.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'attic/modules/FindLibintl.cmake') diff --git a/attic/modules/FindLibintl.cmake b/attic/modules/FindLibintl.cmake index 52ae6479..c7cbc969 100644 --- a/attic/modules/FindLibintl.cmake +++ b/attic/modules/FindLibintl.cmake @@ -18,7 +18,7 @@ if(LIBINTL_INCLUDE_DIR AND LIBINTL_LIB_FOUND) set(Libintl_FIND_QUIETLY TRUE) -endif(LIBINTL_INCLUDE_DIR AND LIBINTL_LIB_FOUND) +endif() find_path(LIBINTL_INCLUDE_DIR libintl.h) @@ -35,10 +35,10 @@ if(LIBINTL_INCLUDE_DIR) find_library(LIBINTL_LIBRARIES NAMES intl libintl ) if(LIBINTL_LIBRARIES) set(LIBINTL_LIB_FOUND TRUE) - endif(LIBINTL_LIBRARIES) + endif() endif (LIBINTL_LIBC_HAS_DGETTEXT) -endif(LIBINTL_INCLUDE_DIR) +endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args(Libintl DEFAULT_MSG LIBINTL_INCLUDE_DIR LIBINTL_LIB_FOUND) -- cgit v1.2.1