diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/ChangeLog | 5 | ||||
| -rw-r--r-- | admin/unidata/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog index 31247765a26..9d5eda1cadf 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-10-23 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * unidata/Makefile.in (emacs, ${DSTDIR}/charprop.el): | ||
| 4 | Quote entities that might contain whitespace. | ||
| 5 | |||
| 1 | 2013-10-07 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2013-10-07 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Improve support for popcount and counting trailing zeros (Bug#15550). | 8 | Improve support for popcount and counting trailing zeros (Bug#15550). |
diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in index df225cc8cbf..91fb5a07305 100644 --- a/admin/unidata/Makefile.in +++ b/admin/unidata/Makefile.in | |||
| @@ -30,7 +30,7 @@ abs_top_builddir = @abs_top_builddir@ | |||
| 30 | 30 | ||
| 31 | EMACS = ${abs_top_builddir}/src/emacs | 31 | EMACS = ${abs_top_builddir}/src/emacs |
| 32 | DSTDIR = ${top_srcdir}/lisp/international | 32 | DSTDIR = ${top_srcdir}/lisp/international |
| 33 | emacs = ${EMACS} -batch --no-site-file --no-site-lisp | 33 | emacs = "${EMACS}" -batch --no-site-file --no-site-lisp |
| 34 | 34 | ||
| 35 | all: ${DSTDIR}/charprop.el | 35 | all: ${DSTDIR}/charprop.el |
| 36 | 36 | ||
| @@ -42,7 +42,7 @@ unidata.txt: ${srcdir}/UnicodeData.txt | |||
| 42 | 42 | ||
| 43 | ${DSTDIR}/charprop.el: ${srcdir}/unidata-gen.elc unidata.txt | 43 | ${DSTDIR}/charprop.el: ${srcdir}/unidata-gen.elc unidata.txt |
| 44 | cd ${DSTDIR} && ${emacs} -l ${srcdir}/unidata-gen \ | 44 | cd ${DSTDIR} && ${emacs} -l ${srcdir}/unidata-gen \ |
| 45 | -f unidata-gen-files ${srcdir} ${abs_builddir}/unidata.txt | 45 | -f unidata-gen-files ${srcdir} "${abs_builddir}/unidata.txt" |
| 46 | 46 | ||
| 47 | ## Like the above, but generate in PWD rather than lisp/international. | 47 | ## Like the above, but generate in PWD rather than lisp/international. |
| 48 | charprop.el: ${srcdir}/unidata-gen.elc unidata.txt | 48 | charprop.el: ${srcdir}/unidata-gen.elc unidata.txt |