From 91597f4dc887181aae201743423678d40280c4c1 Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Thu, 15 Sep 2005 23:18:48 +0000 Subject: [PATCH] Move changelog target to update-changelog so that dist won't automatically invoke it, and have commit and build-release call it. --- Makefile.am | 6 +++--- build-release | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.am b/Makefile.am index c3ffaa2ac..26d39a2e2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -167,15 +167,15 @@ commit-real: commit-changelog: (cd $(top_srcdir) && cvs commit -m "# changelog commit" ChangeLog) -commit: pclean check-security commit-real changelog commit-changelog +commit: pclean check-security commit-real update-changelog commit-changelog -changelog: +update-changelog: (cd $(top_srcdir); \ cvs update ChangeLog; \ sh ./mkchangelog.sh | fmt -c | cat - ChangeLog > ChangeLog.$$$$ && mv ChangeLog.$$$$ ChangeLog; \ $${VISUAL:-vi} ChangeLog) -ChangeLog: changelog +#ChangeLog: changelog # kluge around automake problems. diff --git a/build-release b/build-release index 65fe21662..75a6262eb 100755 --- a/build-release +++ b/build-release @@ -46,7 +46,7 @@ TAG="mutt-`echo $VERSION | tr . -`-rel" echo 'const char *ReleaseDate = "'`date +%Y-%m-%d`'";' > reldate.h -make changelog +make update-changelog # now, prepare the distribution tar balls @@ -56,7 +56,7 @@ touch configure.in make config.status ./config.status make update-doc -make changelog +make update-changelog # build them -- 2.40.0