# HG changeset patch # User Akim Demaille # Date 1343639355 -7200 # Node ID 166502842193ec8f8d5a00587ed19e5be61bf1ea # Parent bd249772f7794bf4313a4446e8f491493dbe441e maint.mk: absolute VPATH issue * top/maint.mk (release-prep): Help Git find .git/. From Jim Meyering. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2012-07-30 Akim Demaille + + maint.mk: absolute VPATH issue + * top/maint.mk (release-prep): Help Git find .git/. + From Jim Meyering. + 2012-07-29 Akim Demaille gitlog-to-changelog: fix previous change diff --git a/top/maint.mk b/top/maint.mk --- a/top/maint.mk +++ b/top/maint.mk @@ -1387,9 +1387,8 @@ echo $(VERSION) > $(prev_version_file) $(MAKE) update-NEWS-hash perl -pi -e '$$. == 3 and print "$(gl_noteworthy_news_)\n\n\n"' $(srcdir)/NEWS - $(emit-commit-log) > .ci-msg - $(VC) commit -F .ci-msg -a - rm .ci-msg + msg=$$($(emit-commit-log)) || exit 1; \ + (cd $(srcdir) && $(VC) commit -m "$$msg" -a) # Override this with e.g., -s $(srcdir)/some_other_name.texi # if the default $(PACKAGE)-derived name doesn't apply.