diff options
author | 2016-02-21 14:09:48 +0100 | |
---|---|---|
committer | 2016-02-21 14:09:48 +0100 | |
commit | cc687bcd95ca9689605372a485b94be8f5af8832 (patch) | |
tree | 3cddfc27eb6253c5202bb1e2dd24f2a200c5b5ab /makefile | |
parent | e7fc6f762afa3cea0d5849e6df17a89d1b6db82d (diff) |
Added python replacement for msgfmt (nw)
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1263,6 +1263,7 @@ genie: $(GENIE) generate: \ genie \ $(GEN_FOLDERS) \ + $(patsubst %.po,%.mo,$(call rwildcard, language/, *.po)) \ $(patsubst $(SRC)/%.lay,$(GENDIR)/%.lh,$(LAYOUTS)) \ $(SRC)/devices/cpu/m68000/m68kops.cpp @@ -1278,10 +1279,8 @@ else endif %.mo: %.po -ifneq ($(TARGETOS),macosx) @echo Converting translation $<... - $(SILENT) msgfmt --check --output-file $@ $< -endif + $(SILENT)$(PYTHON) scripts/build/msgfmt.py --output-file $@ $< #------------------------------------------------- # Regression tests |