diff options
Diffstat (limited to 'po/Makefile')
-rw-r--r-- | po/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/po/Makefile b/po/Makefile index a7b7c34b..010ffca0 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,5 +1,5 @@ # Installation directories -localedir = $(PREFIX)/usr/share/locale +LOCALEDIR = $(DESTDIR)/usr/share/locale PGOAL = mgaonline @@ -16,8 +16,8 @@ all: $(GOALS) install: all for l in $(LANGS); do \ - install -d $(localedir)/$$l/LC_MESSAGES; \ - install -m 644 $$l.mo $(localedir)/$$l/LC_MESSAGES/$(PGOAL).mo; \ + install -d $(LOCALEDIR)/$$l/LC_MESSAGES; \ + install -m 644 $$l.mo $(LOCALEDIR)/$$l/LC_MESSAGES/$(PGOAL).mo; \ done clean: @@ -43,4 +43,3 @@ merge: msgmerge "$$n" $(PGOAL).pot > "$$n"t; \ mv -f "$$n"t "$$n"; \ done - |