Fix typos in the generated ChangeLog.
* ChangeLog.amend: New file. * Makefile.am: Apply corrections from ChangeLog.amend when generating ChangeLog file.
Showing
2 changed files
with
21 additions
and
1 deletions
ChangeLog.amend
0 → 100644
1 | # Spelling corrections for GNU Mailutils ChangeLog | ||
2 | |||
3 | e02df56cb384465b3238c46c6f214f27ee8431ab | ||
4 | s/command on 64 boxes/command on 64-bit boxes/ | ||
5 | |||
6 | bec7b95e67fa1adcff64372ec05253ca7ed9b54e | ||
7 | s/Ninor/Minor/ | ||
8 | |||
9 | e6ae2852edb142fcf84dc489715f8984843dfe0c | ||
10 | s/ificated/indicated/ | ||
11 | |||
12 | f9a486e8ff07e3f35e250d366e748c7f5e712c13 | ||
13 | s/adresses/addresses/ | ||
14 | |||
15 | fb53814d3acb7a08cd849ffbbdbe86d8a374590c | ||
16 | s/prever/prefer/ |
... | @@ -129,11 +129,15 @@ DISTCLEANFILES = pathdefs.h git-describe.h | ... | @@ -129,11 +129,15 @@ DISTCLEANFILES = pathdefs.h git-describe.h |
129 | 129 | ||
130 | gen_start_date = "2008-12-08" | 130 | gen_start_date = "2008-12-08" |
131 | prev_change_log = "doc/ChangeLog.CVS" | 131 | prev_change_log = "doc/ChangeLog.CVS" |
132 | amend_file=ChangeLog.amend | ||
132 | 133 | ||
133 | .PHONY: ChangeLog | 134 | .PHONY: ChangeLog |
134 | ChangeLog: | 135 | ChangeLog: |
135 | @if test -d .git; then \ | 136 | @if test -d .git; then \ |
136 | cmd=$(top_srcdir)/build-aux/gitlog-to-changelog; \ | 137 | cmd="$(top_srcdir)/build-aux/gitlog-to-changelog"; \ |
138 | if test -n "$(amend_file)"; then \ | ||
139 | cmd="$$cmd --amend=$(amend_file)"; \ | ||
140 | fi; \ | ||
137 | if test -n "$(gen_start_date)"; then \ | 141 | if test -n "$(gen_start_date)"; then \ |
138 | cmd="$$cmd --since=\"$(gen_start_date)\""; \ | 142 | cmd="$$cmd --since=\"$(gen_start_date)\""; \ |
139 | fi; \ | 143 | fi; \ | ... | ... |
-
Please register or sign in to post a comment