From e74b578c67448817852e0adabe0114de746e4103 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Wed, 2 Mar 2016 08:21:13 +0100 Subject: [PATCH] added IGNORE_BAD_LOCALISATION flag (nw) --- makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index abdba0458e4..dc19443e627 100644 --- a/makefile +++ b/makefile @@ -97,6 +97,7 @@ # MSBUILD = 1 # USE_LIBUV = 1 +# IGNORE_BAD_LOCALISATION=1 ifdef PREFIX_MAKEFILE include $(PREFIX_MAKEFILE) @@ -1365,8 +1366,11 @@ endif %.mo: %.po @echo Converting translation $<... +ifdef IGNORE_BAD_LOCALISATION $(SILENT)$(PYTHON) scripts/build/msgfmt.py --output-file $@ $< || exit 0 - +else + $(SILENT)$(PYTHON) scripts/build/msgfmt.py --output-file $@ $< +endif #------------------------------------------------- # Regression tests #-------------------------------------------------