aboutsummaryrefslogtreecommitdiff
path: root/modules/FindGettext.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'modules/FindGettext.cmake')
-rw-r--r--modules/FindGettext.cmake18
1 files changed, 9 insertions, 9 deletions
diff --git a/modules/FindGettext.cmake b/modules/FindGettext.cmake
index b6dd3de5..2244b742 100644
--- a/modules/FindGettext.cmake
+++ b/modules/FindGettext.cmake
@@ -16,20 +16,20 @@ check_include_files(libintl.h HAVE_LIBINTL_H)
set(GETTEXT_INCLUDE_DIR)
set(GETTEXT_LIBRARIES)
-if(HAVE_LIBINTL_H)
+if (HAVE_LIBINTL_H)
set(GETTEXT_FOUND TRUE)
set(GETTEXT_SOURCE "libintl.h")
-endif(HAVE_LIBINTL_H)
+endif (HAVE_LIBINTL_H)
-if(GETTEXT_FOUND)
- if(NOT Gettext_FIND_QUIETLY)
+if (GETTEXT_FOUND)
+ if (NOT Gettext_FIND_QUIETLY)
message(STATUS "Gettext functionality present (${GETTEXT_SOURCE})")
- endif(NOT Gettext_FIND_QUIETLY)
-else(GETTEXT_FOUND)
- if(NOT Gettext_FIND_QUIETLY)
+ endif (NOT Gettext_FIND_QUIETLY)
+else (GETTEXT_FOUND)
+ if (NOT Gettext_FIND_QUIETLY)
message(STATUS "Gettext functionality NOT present, "
"translations will not be available")
- endif(NOT Gettext_FIND_QUIETLY)
-endif(GETTEXT_FOUND)
+ endif (NOT Gettext_FIND_QUIETLY)
+endif (GETTEXT_FOUND)
MARK_AS_ADVANCED(GETTEXT_INCLUDE_DIR GETTEXT_LIBRARIES)