diff options
author | Dmitry V. Levin <ldv@strace.io> | 2024-05-11 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2024-05-15 08:00:00 +0000 |
commit | a7eb114974b20aa02ead19e8f905a863ef34ce55 (patch) | |
tree | 2b3d781d83316e7a60774f8a0aa7e2d432ada42e /Makefile.am | |
parent | 55a20554f9cfb502e73a5d507828d3ce9aea1a8d (diff) | |
download | pam-a7eb114974b20aa02ead19e8f905a863ef34ce55.tar.gz pam-a7eb114974b20aa02ead19e8f905a863ef34ce55.tar.bz2 pam-a7eb114974b20aa02ead19e8f905a863ef34ce55.zip |
build: do not distribute historic changelog files
Since 2011, ChangeLog file is generated from git log history.
ChangeLog-CVS is a historic changelog file that was maintained before
the project was migrated from cvs to git.
CHANGELOG is another historic changelog file that was replaced by
ChangeLog in 2005.
modules/pam_unix/CHANGELOG is the oldest of historic changelog files,
it is not maintained since 1999.
All these historic changelog files are no longer relevant, so they are
no longer included into release tarballs.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am index 60674d24..8a2e31dd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,7 @@ endif CLEANFILES = *~ -EXTRA_DIST = pgp.keys.asc CHANGELOG ChangeLog-CVS Copyright +EXTRA_DIST = pgp.keys.asc Copyright ACLOCAL_AMFLAGS = -I m4 @@ -40,11 +40,9 @@ xtests: gen_changelog_start_date = 2011-10-26 gen-ChangeLog: if test -d .git; then \ - ( $(top_srcdir)/gitlog-to-changelog --append-dot \ - --since=$(gen_changelog_start_date) && \ - echo && echo && \ - echo 'See ChangeLog-CVS for earlier changes.' \ - ) > $(distdir)/ChangeLog.new && \ + $(top_srcdir)/gitlog-to-changelog --append-dot \ + --since=$(gen_changelog_start_date) \ + > $(distdir)/ChangeLog.new && \ rm -f $(distdir)/ChangeLog && \ mv $(distdir)/ChangeLog.new $(distdir)/ChangeLog; \ fi |