From: Giuseppe Bilotta Date: Thu, 21 Jul 2011 11:59:50 +0000 (+0200) Subject: Uppercase DEFINED or cmake 2.8.4 complains X-Git-Url: http://81.2.79.47:8989/gitweb/?a=commitdiff_plain;h=d63c160bd68f878ef0ebd30f125deee0e78429eb;p=zefram%2Fminetest%2Fminetest_engine.git Uppercase DEFINED or cmake 2.8.4 complains --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8785a0e3..2d7a7fc6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -280,10 +280,10 @@ if(BUILD_CLIENT) install(FILES ${ZLIB_DLL} DESTINATION ${BINDIR}) endif() if(USE_GETTEXT) - if(defined GETTEXT_DLL) + if(DEFINED GETTEXT_DLL) install(FILES ${GETTEXT_DLL} DESTINATION ${BINDIR}) endif() - if(defined GETTEXT_ICONV_DLL) + if(DEFINED GETTEXT_ICONV_DLL) install(FILES ${GETTEXT_ICONV_DLL} DESTINATION ${BINDIR}) endif() endif(USE_GETTEXT)