diff options
author | Johannes Schickel | 2016-01-25 20:36:05 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-01-25 20:36:05 +0100 |
commit | 1d8095554589e9ac24d6354373f520b0efdec7a4 (patch) | |
tree | bbaf58bdb10a16cbb37f1ae84085619d7d167509 /po | |
parent | 7c7fd8f5049d5545e3b45a565ecb8c897db72586 (diff) | |
download | scummvm-rg350-1d8095554589e9ac24d6354373f520b0efdec7a4.tar.gz scummvm-rg350-1d8095554589e9ac24d6354373f520b0efdec7a4.tar.bz2 scummvm-rg350-1d8095554589e9ac24d6354373f520b0efdec7a4.zip |
I18N: Always search engine files in lexical order.
Diffstat (limited to 'po')
-rw-r--r-- | po/module.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/module.mk b/po/module.mk index 88bf7d5d12..8311b76a66 100644 --- a/po/module.mk +++ b/po/module.mk @@ -2,7 +2,7 @@ POTFILE := $(srcdir)/po/scummvm.pot POFILES := $(wildcard $(srcdir)/po/*.po) CPFILES := $(wildcard $(srcdir)/po/*.cp) -ENGINE_INPUT_POTFILES := $(wildcard $(srcdir)/engines/*/POTFILES) +ENGINE_INPUT_POTFILES := $(sort $(wildcard $(srcdir)/engines/*/POTFILES)) updatepot: cat $(srcdir)/po/POTFILES $(ENGINE_INPUT_POTFILES) | \ xgettext -f - -D $(srcdir) -d scummvm --c++ -k_ -k_s -k_c:1,2c -k_sc:1,2c --add-comments=I18N\ |