From: Daiki Ueno Date: Thu, 4 Dec 2014 03:21:35 +0000 (+0900) Subject: examples: Don't forcibly regenerate POT files on 'make dist' X-Git-Tag: v0.19.4~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c3d71ce;p=thirdparty%2Fgettext.git examples: Don't forcibly regenerate POT files on 'make dist' Previously we generated POT files on 'make dist'. However, it take some time to complete and require autotools bootstrap for each project. * Makefile.am (distdir1): Don't invoke update-po rule in po/Makefile. * po/Makefile.am (distdir1): Don't invoke update-po rule. --- diff --git a/gettext-tools/examples/ChangeLog b/gettext-tools/examples/ChangeLog index 8c7a64b80..da08c96d5 100644 --- a/gettext-tools/examples/ChangeLog +++ b/gettext-tools/examples/ChangeLog @@ -1,3 +1,12 @@ +2014-12-04 Daiki Ueno + + examples: Don't forcibly regenerate POT files on 'make dist' + Previously we generated POT files on 'make dist'. However, it + take some time to complete and require autotools bootstrap for + each project. + * Makefile.am (distdir1): Don't invoke update-po rule in po/Makefile. + * po/Makefile.am (distdir1): Don't invoke update-po rule. + 2014-10-15 Daiki Ueno * gettext 0.19.3 released. diff --git a/gettext-tools/examples/Makefile.am b/gettext-tools/examples/Makefile.am index 9092649b7..9cc56ff86 100644 --- a/gettext-tools/examples/Makefile.am +++ b/gettext-tools/examples/Makefile.am @@ -504,7 +504,6 @@ uninstall-local: # Invoked from inside automake's distdir target. distdir1: - cd po && $(MAKE) update-po for file in $(EXAMPLESFILES); do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ diff --git a/gettext-tools/examples/po/Makefile.am b/gettext-tools/examples/po/Makefile.am index 9bd213f49..0f5d28611 100644 --- a/gettext-tools/examples/po/Makefile.am +++ b/gettext-tools/examples/po/Makefile.am @@ -339,7 +339,6 @@ EXTRA_DIST = remove-potcdate.sin xsmallpot.sh mmsmallpo.sh LINGUAS \ # Hidden from automake, but really activated. Works around an automake-1.5 bug. #distdir: distdir1 distdir1: - $(MAKE) update-po if test -f $(srcdir)/$(DOMAIN).pot; then \ for file in $(DOMAIN).pot stamp-po; do \ if test -f $$file; then d=.; else d=$(srcdir); fi; \