From: Brendan Cully Date: Fri, 16 Sep 2005 15:20:59 +0000 (+0000) Subject: Move update-po out of make dist, into build-release. It seems to me that make X-Git-Tag: mutt-1-5-12-rel~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b6ad24a34b8819680a2f6427c06ce1c99e414c0;p=mutt Move update-po out of make dist, into build-release. It seems to me that make dist should do as little as possible beyond putting the right files in a tarball. --- diff --git a/build-release b/build-release index 75a6262e..fa7f085e 100755 --- a/build-release +++ b/build-release @@ -57,6 +57,7 @@ make config.status ./config.status make update-doc make update-changelog +(cd po && make update-po) # build them diff --git a/po/Makefile.in.in b/po/Makefile.in.in index a8d897c5..09fb7035 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -158,11 +158,7 @@ maintainer-clean: distclean rm -f $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) -dist distdir: - $(MAKE) update-po - @$(MAKE) dist2 -# This is a separate target because 'update-po' must be executed before. -dist2: $(DISTFILES) +dist distdir: $(DISTFILES) dists="$(DISTFILES)"; \ for file in $$dists; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \