From ac86ca949f1e76c0ce55e74c2ec8e094a6bfb550 Mon Sep 17 00:00:00 2001 From: John Ralls Date: Mon, 11 Sep 2017 12:18:57 -0700 Subject: [PATCH] Disable regeneration of POTFILES.in On Windows CMake converts "\n" to CRLF, which causes xgettext to mangle paths with [type: gettext/gsettings] in front of them and also dirties the source directory with uncommittable changes. The autotools build doesn't regenerate POTFILES.in and we've historically maintained it by hand. --- po/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt index e336cff005..872d388e3e 100644 --- a/po/CMakeLists.txt +++ b/po/CMakeLists.txt @@ -146,7 +146,7 @@ ENDIF () IF(BUILDING_FROM_VCS) - MAKE_GNUCASH_POTFILES() +# MAKE_GNUCASH_POTFILES() find_program(INTLTOOL_EXTRACT NAMES intltool-extract) find_program(XGETTEXT xgettext)