From c31c87adb5bacf26782362ea941bc137a6e6dec7 Mon Sep 17 00:00:00 2001
From: est31 <MTest31@outlook.com>
Date: Sun, 22 Mar 2015 20:52:57 +0100
Subject: [PATCH] Fix cmake po detection bug

Previously, cmake po detection would treat the "timestamp" file created by building for android as own language directory.
---
 cmake/Modules/FindGettextLib.cmake | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cmake/Modules/FindGettextLib.cmake b/cmake/Modules/FindGettextLib.cmake
index c6f731e04..5c992f0fa 100644
--- a/cmake/Modules/FindGettextLib.cmake
+++ b/cmake/Modules/FindGettextLib.cmake
@@ -74,6 +74,7 @@ IF(GETTEXT_FOUND)
 	SET(GETTEXT_MO_DEST_PATH ${LOCALEDIR}/<locale>/LC_MESSAGES)
 	FILE(GLOB GETTEXT_AVAILABLE_LOCALES RELATIVE ${GETTEXT_PO_PATH} "${GETTEXT_PO_PATH}/*")
 	LIST(REMOVE_ITEM GETTEXT_AVAILABLE_LOCALES minetest.pot)
+	LIST(REMOVE_ITEM GETTEXT_AVAILABLE_LOCALES timestamp)
 	MACRO(SET_MO_PATHS _buildvar _destvar _locale)
 		STRING(REPLACE "<locale>" ${_locale} ${_buildvar} ${GETTEXT_MO_BUILD_PATH})
 		STRING(REPLACE "<locale>" ${_locale} ${_destvar} ${GETTEXT_MO_DEST_PATH})
-- 
GitLab