Makefile for non-gnu version of basename

This commit is contained in:
Emmanuel Garette 2013-09-16 14:43:58 +02:00
parent e929745ebf
commit 3ffbb4ab8f
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