From 1249e1e2bc72854d455bc181a740ec5141149bef Mon Sep 17 00:00:00 2001 From: Daniel Dehennin Date: Mon, 16 Sep 2013 14:41:12 +0200 Subject: [PATCH] Incorrect filename for gettext catablog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Makefile: Do not use basename option ā€œ-sā€ as it's not compatible with, at least, Ubuntu Precise Pangolin. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca436a5..8579680 100644 --- a/Makefile +++ b/Makefile @@ -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