]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
intl: Stop installing ChangeLog.inst
authorDaiki Ueno <ueno@gnu.org>
Mon, 16 Jun 2014 07:48:33 +0000 (16:48 +0900)
committerDaiki Ueno <ueno@gnu.org>
Mon, 16 Jun 2014 08:27:05 +0000 (17:27 +0900)
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.

gettext-runtime/intl/ChangeLog
gettext-runtime/intl/Makefile.in

index 1cca76913b1c6a053510fc117cb7d200700b36ea..c131010e2afc77ec48b762a752492f2b299b3b34 100644 (file)
@@ -1,3 +1,18 @@
+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.
index 7151d396955f61399f3f999fdd8549b1089ad2a5..452955146f1358bf12b16191e48ca8a4f3cc54e6 100644 (file)
@@ -460,7 +460,6 @@ install-data: all
        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 \
@@ -571,7 +570,7 @@ uninstall:
          : ; \
        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 \
@@ -622,11 +621,6 @@ clean: mostlyclean
 
 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;"
@@ -646,7 +640,7 @@ dist distdir: Makefile
            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; \