diff options
author | Johannes Schickel | 2010-06-18 02:08:21 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-18 02:08:21 +0000 |
commit | e3c8624510fb0d7b28e95dd79d99c39b643d42e1 (patch) | |
tree | 299da6d0d87b522ded975ce371b7505035cdddb7 | |
parent | e347a6856ef3d4796a794cc51e7d078ec3c2a26f (diff) | |
download | scummvm-rg350-e3c8624510fb0d7b28e95dd79d99c39b643d42e1.tar.gz scummvm-rg350-e3c8624510fb0d7b28e95dd79d99c39b643d42e1.tar.bz2 scummvm-rg350-e3c8624510fb0d7b28e95dd79d99c39b643d42e1.zip |
Explcitily use "perl" from the PATH, this fixes translation updating on systems, where perl is not installed in /usr/bin/perl.
svn-id: r49992
-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 b7f796f67c..adea399adb 100644 --- a/po/module.mk +++ b/po/module.mk @@ -33,7 +33,7 @@ updatepot: fi; $(srcdir)/common/messages.cpp: $(POFILES) - $(srcdir)/tools/po2c $^ > $(srcdir)/common/messages.cpp + perl $(srcdir)/tools/po2c $^ > $(srcdir)/common/messages.cpp update-translations: updatepot $(POFILES) $(srcdir)/common/messages.cpp @$(foreach file, $(POFILES), echo -n $(notdir $(basename $(file)))": ";msgfmt --statistic $(file);) |