diff options
| author | Joakim Verona | 2015-01-25 02:11:31 +0100 |
|---|---|---|
| committer | Joakim Verona | 2015-01-25 02:11:31 +0100 |
| commit | e5087278b9bcab5847ce63d80c0d74c27f50e719 (patch) | |
| tree | c9ad8959e81033cb3423a25496ea4c411b212461 /admin | |
| parent | bdd672b275034e8c1c65992f2e21dac7cc6eba60 (diff) | |
| parent | bce27d884521832a62837b113f4e681974cdaccb (diff) | |
| download | emacs-e5087278b9bcab5847ce63d80c0d74c27f50e719.tar.gz emacs-e5087278b9bcab5847ce63d80c0d74c27f50e719.zip | |
merge master
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 6 | ||||
| -rw-r--r-- | admin/unidata/Makefile.in | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 70d1714f8eb..e692ca0dbfd 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2015-01-24 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix a couple of AM_V_GEN bugs | ||
| 4 | * unidata/Makefile.in (unifiles): Use AM_V_at instead of AM_V_GEN, | ||
| 5 | since this doesn't generate a file. | ||
| 6 | |||
| 1 | 2015-01-15 Eli Zaretskii <eliz@gnu.org> | 7 | 2015-01-15 Eli Zaretskii <eliz@gnu.org> |
| 2 | 8 | ||
| 3 | * unidata/uvs.el (uvs-print-table-ivd): Call set-binary-mode on | 9 | * unidata/uvs.el (uvs-print-table-ivd): Call set-binary-mode on |
diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in index 1396f0926f4..6c81d32484a 100644 --- a/admin/unidata/Makefile.in +++ b/admin/unidata/Makefile.in | |||
| @@ -90,7 +90,7 @@ ${unidir}/charprop.el: ${srcdir}/unidata-gen.el \ | |||
| 90 | ## to generate a Makefile fragment explicitly listing the uni- files, | 90 | ## to generate a Makefile fragment explicitly listing the uni- files, |
| 91 | ## which this file could include. If no fragment, rebuild everything. | 91 | ## which this file could include. If no fragment, rebuild everything. |
| 92 | unifiles: ${unidir}/charprop.el | 92 | unifiles: ${unidir}/charprop.el |
| 93 | $(AM_V_GEN)for f in `sed -n 's/^;; FILE: //p' < $<`; do \ | 93 | $(AM_V_at)for f in `sed -n 's/^;; FILE: //p' < $<`; do \ |
| 94 | [ -f $(unidir)/$$f ] || exec $(MAKE) PHONY_EXTRAS=$< $<; \ | 94 | [ -f $(unidir)/$$f ] || exec $(MAKE) PHONY_EXTRAS=$< $<; \ |
| 95 | done | 95 | done |
| 96 | 96 | ||