branch: externals/auctex
commit 4ebbf9091782e5181b5408a5cd139d44db5414dc
Author: Mosè Giordano <[email protected]>
Commit: Mosè Giordano <[email protected]>
Make gitlog-to-changelog ignore release-commit
* Makefile.in (release-commit): Prefix the commit message with "; ", so that
the commit will be ignored when automatically updating the ChangeLog.
---
Makefile.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index 959ef30..b54a808 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -525,7 +525,7 @@ release-commit: check-tag
cp $(CHANGELOG_N) ChangeLog-preview
cat ChangeLog.old >> $(CHANGELOG_N)
cat ChangeLog-preview.old >> ChangeLog-preview
- git commit -m 'Release_$(TAG)' -- $(CHANGELOG_N) ChangeLog-preview
+ git commit -m '; Release_$(TAG)' -- $(CHANGELOG_N) ChangeLog-preview
git tag release_`echo $(TAG) | sed -e 's/[.]/_/g'`
@echo
@echo "Congratulations! Release $(TAG) of AUCTeX is ready."