diff options
| author | Glenn Morris | 2015-05-10 12:01:39 -0700 |
|---|---|---|
| committer | Glenn Morris | 2015-05-10 12:01:39 -0700 |
| commit | e20b70bf505a9ac699cfdba534fe20210923f474 (patch) | |
| tree | ae9b1bd2009558e70caad0c207c6c7b7eee37aa0 | |
| parent | 387e1e19430c12eb7db5b58f861c4e85613476f8 (diff) | |
| download | emacs-e20b70bf505a9ac699cfdba534fe20210923f474.tar.gz emacs-e20b70bf505a9ac699cfdba534fe20210923f474.zip | |
* Makefile.in: Fixes for recent change-history changes.
(change-history-nocommit): Update footer regexp.
Ensure output script stays executable.
| -rw-r--r-- | ChangeLog.2 | 2 | ||||
| -rw-r--r-- | Makefile.in | 4 | ||||
| -rwxr-xr-x[-rw-r--r--] | build-aux/gitlog-to-emacslog | 0 |
3 files changed, 2 insertions, 4 deletions
diff --git a/ChangeLog.2 b/ChangeLog.2 index c6bff3cc4b8..d1c9477f146 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 | |||
| @@ -1154,8 +1154,6 @@ | |||
| 1154 | as the default value instead of initial input | 1154 | as the default value instead of initial input |
| 1155 | (http://lists.gnu.org/archive/html/emacs-devel/2015-04/msg01182.html). | 1155 | (http://lists.gnu.org/archive/html/emacs-devel/2015-04/msg01182.html). |
| 1156 | 1156 | ||
| 1157 | See ChangeLog.2 for earlier changes. | ||
| 1158 | |||
| 1159 | 2015-04-25 Paul Eggert <eggert@cs.ucla.edu> | 1157 | 2015-04-25 Paul Eggert <eggert@cs.ucla.edu> |
| 1160 | 1158 | ||
| 1161 | Don't freeze with unreadable processes | 1159 | Don't freeze with unreadable processes |
diff --git a/Makefile.in b/Makefile.in index 2fdbf8d2102..5ac4e61efbc 100644 --- a/Makefile.in +++ b/Makefile.in | |||
| @@ -1117,12 +1117,12 @@ unchanged-history-files: | |||
| 1117 | change-history-nocommit: master-branch-is-current unchanged-history-files | 1117 | change-history-nocommit: master-branch-is-current unchanged-history-files |
| 1118 | -rm -f ChangeLog.tmp | 1118 | -rm -f ChangeLog.tmp |
| 1119 | $(MAKE) ChangeLog CHANGELOG=ChangeLog.tmp | 1119 | $(MAKE) ChangeLog CHANGELOG=ChangeLog.tmp |
| 1120 | (sed '/^;; [L]ocal Variables:/,$$d' <ChangeLog.tmp && cat $(CHANGELOG_N)) \ | 1120 | (sed '/^See ChangeLog.[0-9]* for earlier/,$$d' <ChangeLog.tmp && cat $(CHANGELOG_N)) \ |
| 1121 | >$(CHANGELOG_N).tmp | 1121 | >$(CHANGELOG_N).tmp |
| 1122 | rm ChangeLog.tmp | 1122 | rm ChangeLog.tmp |
| 1123 | new_origin=$$(git log --pretty=format:%H HEAD^!) && \ | 1123 | new_origin=$$(git log --pretty=format:%H HEAD^!) && \ |
| 1124 | sed 's/^\(gen_origin=\).*/\1'"$$new_origin/" \ | 1124 | sed 's/^\(gen_origin=\).*/\1'"$$new_origin/" \ |
| 1125 | < $(emacslog) > $(emacslog).tmp | 1125 | < $(emacslog) > $(emacslog).tmp && chmod +x $(emacslog).tmp |
| 1126 | mv $(CHANGELOG_N).tmp $(CHANGELOG_N) | 1126 | mv $(CHANGELOG_N).tmp $(CHANGELOG_N) |
| 1127 | mv $(emacslog).tmp $(emacslog) | 1127 | mv $(emacslog).tmp $(emacslog) |
| 1128 | 1128 | ||
diff --git a/build-aux/gitlog-to-emacslog b/build-aux/gitlog-to-emacslog index e38f8969bfe..e38f8969bfe 100644..100755 --- a/build-aux/gitlog-to-emacslog +++ b/build-aux/gitlog-to-emacslog | |||