* autopoint-3: Run "make dist" after "make"; add a workaround for
a bug in 0.19 and 0.19.1, where intl/ChangeLog is required but
missing in the archive.
+2014-06-16 Daiki Ueno <ueno@gnu.org>
+
+ tests: Test "make dist" in autopoint test
+ * autopoint-3: Run "make dist" after "make"; add a workaround for
+ a bug in 0.19 and 0.19.1, where intl/ChangeLog is required but
+ missing in the archive.
+
2014-06-10 Daiki Ueno <ueno@gnu.org>
* gettext 0.19.1 released.
# intl/plural.c in that case.
test -f intl/plural.c && touch intl/plural.c
+# Workaround for a bug in 0.19 and 0.19.1: ChangeLog is missing in the archive.
+case "$required_gettext_version" in
+ 0.19 | 0.19.1)
+ test -f intl/ChangeLog || : > intl/ChangeLog
+ ;;
+esac
+
${MAKE} >/dev/null 2>/dev/null || exit 1
+${MAKE} dist >/dev/null 2>/dev/null || exit 1
exit 0