Incorrect filename for gettext catablog

* Makefile: Do not use basename option “-s” as it's not compatible with,
  at least, Ubuntu Precise Pangolin.
This commit is contained in:
Daniel Dehennin 2013-09-16 14:41:12 +02:00
parent e929745ebf
commit 1249e1e2bc
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ endef
define build_translation
if [ -d ${1} ]; then \
for f in `find ${1} -name "*.po"`; do \
msgfmt -o `dirname $$f`/`basename -s ".po" $$f`.mo $$f || true; \
msgfmt -o `dirname $$f`/`basename $$f .po`.mo $$f || true; \
done; \
fi
endef