summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-07-21 13:59:50 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2011-07-21 13:59:50 +0200
commitd63c160bd68f878ef0ebd30f125deee0e78429eb (patch)
tree7d27774fcd6cfa1688db93c2839d42943fa3077d
parent2a6c0fc17f0ed113a6f46f852338b96bce4d966d (diff)
downloadminetest-d63c160bd68f878ef0ebd30f125deee0e78429eb.tar.gz
minetest-d63c160bd68f878ef0ebd30f125deee0e78429eb.tar.bz2
minetest-d63c160bd68f878ef0ebd30f125deee0e78429eb.zip
Uppercase DEFINED or cmake 2.8.4 complains
-rw-r--r--src/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 8785a0e3f..2d7a7fc68 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)