From fb5af2c54f2a27c1154d64fe4d111003ce5fcb03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 5 Mar 2017 12:37:29 +0100 Subject: Enhancement Makefile and add support for DESTDIR --- po/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'po') 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 - -- cgit v1.2.1