diff options
| author | Eli Zaretskii | 2016-02-02 22:09:32 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2016-02-02 22:09:32 +0200 |
| commit | a4278e28f6d6b22ba21468643c1cd8f6c60fb564 (patch) | |
| tree | 9ff88adf6227273f58157454873de2a819a71d74 /src | |
| parent | 860da4dccb4f54391f3ff77a9dc23ca54e986cb4 (diff) | |
| download | emacs-a4278e28f6d6b22ba21468643c1cd8f6c60fb564.tar.gz emacs-a4278e28f6d6b22ba21468643c1cd8f6c60fb564.zip | |
Fix failure to compile ns-win.el in parallel builds
* src/Makefile.in ($(lispsource)/term/ns-win.elc): Add order-only
dependency on $(lispsource)/international/charprop.el.
(Bug#22501)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index fab10aeed47..f99a2f401ad 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -501,6 +501,11 @@ $(srcdir)/macuvs.h $(lispsource)/international/charprop.el: \ | |||
| 501 | $(lispsource)/international/ucs-normalize.elc: | \ | 501 | $(lispsource)/international/ucs-normalize.elc: | \ |
| 502 | $(lispsource)/international/charprop.el | 502 | $(lispsource)/international/charprop.el |
| 503 | 503 | ||
| 504 | ## ns-win.el loads ucs-normalize, so it also needs the above-mentioned | ||
| 505 | ## 2 uni-*.el files to exist. | ||
| 506 | $(lispsource)/term/ns-win.elc: | \ | ||
| 507 | $(lispsource)/international/charprop.el | ||
| 508 | |||
| 504 | lispintdir = ${lispsource}/international | 509 | lispintdir = ${lispsource}/international |
| 505 | ${lispintdir}/cp51932.el ${lispintdir}/eucjp-ms.el: FORCE | 510 | ${lispintdir}/cp51932.el ${lispintdir}/eucjp-ms.el: FORCE |
| 506 | ${MAKE} -C ../admin/charsets $(notdir $@) | 511 | ${MAKE} -C ../admin/charsets $(notdir $@) |