From dea3f8ff2d151e841991ec3dfab06b6ecb625308 Mon Sep 17 00:00:00 2001 From: gdrooid Date: Wed, 20 Aug 2014 00:06:33 +0200 Subject: [PATCH] Fix translations makefile. --- extras/po/Makefile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/extras/po/Makefile b/extras/po/Makefile index c5656c9..48a0705 100644 --- a/extras/po/Makefile +++ b/extras/po/Makefile @@ -1,13 +1,15 @@ LOCALEDIR ?= /usr/share/locale -TOMBFILE = LC_MESSAGES/tomb.po +TOMBFILE = LC_MESSAGES/tomb.mo all: @rm -f tomb.pot @./generate_translatable_strings.sh > tomb.pot @echo "Strings generated in tomb.pot" -install: *.mo - @install -Dm755 es.mo ${LOCALEDIR}/es/${TOMBFILE} +install: es.mo ru.mo fr.mo + @install -Dm644 es.mo ${LOCALEDIR}/es/${TOMBFILE} + @install -Dm644 ru.mo ${LOCALEDIR}/ru/${TOMBFILE} + @install -Dm644 fr.mo ${LOCALEDIR}/fr/${TOMBFILE} -es.mo: es.po +%.mo: %.po msgfmt -o $@ $<