+2014-06-16 Daiki Ueno <ueno@gnu.org>
+
+ intl: Stop installing ChangeLog.inst
+ After the git-version-gen migration (commit fbf4e276), the
+ creation of gettext-tools/intl/ChangeLog.inst in configure.ac was
+ removed because we lost access to $RELEASE_DATE. Given that
+ intl/VERSION provides enough information, simply drop the
+ ChangeLog file.
+ Problem reported by Bruce Korb in
+ <https://lists.gnu.org/archive/html/bug-gettext/2014-06/msg00022.html>.
+ * Makefile.in (install-data): Don't install ChangeLog.inst.
+ (distclean): Don't remove ChangeLog.inst.
+ (uninstall): Don't remove ChangeLog under $(gettextsrcdir)/intl.
+ (dist): Don't include ChangeLog in the distribution.
+
2014-06-10 Daiki Ueno <ueno@gnu.org>
* gettext 0.19.1 released.
if test "$(PACKAGE)" = "gettext-tools"; then \
$(mkdir_p) $(DESTDIR)$(gettextsrcdir); \
$(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \
- $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \
dists="COPYING.LIB $(DISTFILES.common)"; \
for file in $$dists; do \
$(INSTALL_DATA) $(srcdir)/$$file \
: ; \
fi
if test "$(PACKAGE)" = "gettext-tools"; then \
- for file in VERSION ChangeLog COPYING.LIB $(DISTFILES.common) $(DISTFILES.generated); do \
+ for file in VERSION COPYING.LIB $(DISTFILES.common) $(DISTFILES.generated); do \
rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
done; \
else \
distclean: clean
rm -f Makefile ID TAGS
- if test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; then \
- rm -f ChangeLog.inst $(DISTFILES.normal); \
- else \
- : ; \
- fi
maintainer-clean: distclean
@echo "This command is intended for maintainers to use;"
additional="$(DISTFILES.normal)"; \
fi; \
$(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
- for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
+ for file in $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
cp -p $$dir/$$file $(distdir) || test $$file = Makefile.in || exit 1; \
done; \