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.
This commit is contained in:
Daiki Ueno 2014-12-04 12:21:35 +09:00
parent d2d04ba907
commit 2c3d71ceb0
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,12 @@
2014-12-04 Daiki Ueno <ueno@gnu.org>
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 <ueno@gnu.org>
* gettext 0.19.3 released.

View File

@ -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,/[^/]*$$,,'`; \

View File

@ -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; \