From 7282776c05c2fb254ae65b63977ba604be316038 Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Tue, 1 Nov 2016 12:24:14 +0100 Subject: Build: fix distdir target for translations It now distributes po, pot, Makefile.in, and associated text files. https://fedorahosted.org/freeipa/ticket/6418 Reviewed-By: Martin Basti Reviewed-By: Christian Heimes --- po/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/po/Makefile.in b/po/Makefile.in index c2f843935..b42d8fc6d 100644 --- a/po/Makefile.in +++ b/po/Makefile.in @@ -76,7 +76,7 @@ C_POTFILES = $(C_FILES) $(H_FILES) .SUFFIXES: .SUFFIXES: .po .mo -.PHONY: all create-po update-po update-pot install mostlyclean clean distclean test mo-files debug strip-po merge-po $(po_files) +.PHONY: all create-po update-po update-pot install mostlyclean clean distclean distdir test mo-files debug strip-po merge-po $(po_files) all: @@ -192,6 +192,11 @@ clean: mostlyclean distclean: clean rm -f Makefile +distdir: + cp $(po_files) $(distdir) + cp $(DOMAIN).pot $(distdir) + cp LINGUAS Makefile.in README contributing_translators.txt $(distdir) + maintainer-clean: distclean test: -- cgit