From: Bruno Haible Date: Wed, 14 Nov 2001 22:10:50 +0000 (+0000) Subject: Make ChangeLog optional. X-Git-Tag: v0.11~296 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d773a2d68e4ee99dcfc2bfda106c6635db2bc78;p=thirdparty%2Fgettext.git Make ChangeLog optional. --- diff --git a/po/ChangeLog b/po/ChangeLog index 70f974405..daff76fe7 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,8 @@ +2001-11-14 Bruno Haible + + * Makefile.in.in (DISTFILES): Remove ChangeLog. + (dist2): Distribute ChangeLog only if it exists. + 2001-11-11 Bruno Haible * da.po: Update from Keld Simonsen . diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 4be129b7c..60c55b338 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -41,7 +41,7 @@ MSGMERGE_UPDATE = @MSGMERGE@ --update POFILES = @POFILES@ GMOFILES = @GMOFILES@ -DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ +DISTFILES = Makefile.in.in POTFILES.in $(PACKAGE).pot \ $(POFILES) $(GMOFILES) POTFILES = \ @@ -180,6 +180,7 @@ dist distdir: # This is a separate target because 'update-po' must be executed before. dist2: $(DISTFILES) dists="$(DISTFILES)"; \ + if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \