From b909f56dbb9b1f8b7f8a8fd2a30841e4f03f2022 Mon Sep 17 00:00:00 2001 From: John Maguire <john.maguire@gmail.com> Date: Fri, 7 May 2010 12:30:06 +0000 Subject: [PATCH] Stupid msgmerge fix. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1a522fd52..c17bb3387 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -322,7 +322,7 @@ add_custom_target(po_all ALL) foreach (_lang ${CLEMENTINE-LANGUAGES}) set(_po ${CMAKE_CURRENT_SOURCE_DIR}/translations/${_lang}.po) add_custom_target("po_${_lang}" - COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --quiet -U --no-location --no-fuzzy-matching + COMMAND ${GETTEXT_MSGMERGE_EXECUTABLE} --quiet -U --no-location --no-fuzzy-matching --backup=off ${_po} ${CLEMENTINE-POT} DEPENDS ${_po}) add_dependencies("po_${_lang}" pot)