diff options
| author | Mattias EngdegÄrd | 2022-06-10 10:22:24 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-06-10 10:37:34 +0200 |
| commit | 068ce6411d20646ac5a8a80a79167068b3247554 (patch) | |
| tree | 08b3f097ed35359ce38d5cba8409fa6d3fdd25b0 /nextstep | |
| parent | 307ef05587be7cec5343799ac28a7581064fb467 (diff) | |
| download | emacs-068ce6411d20646ac5a8a80a79167068b3247554.tar.gz emacs-068ce6411d20646ac5a8a80a79167068b3247554.zip | |
Fix macOS parallel bootstrap error (bug#55846)
* nextstep/Makefile.in (${ns_appdir}):
Change to a single-target rule to avoid the same actions being
executed in parallel.
Diffstat (limited to 'nextstep')
| -rw-r--r-- | nextstep/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in index 92d7f28fe6b..9c7059f2c0b 100644 --- a/nextstep/Makefile.in +++ b/nextstep/Makefile.in | |||
| @@ -47,7 +47,9 @@ ns_check_file = @ns_appdir@/@ns_check_file@ | |||
| 47 | 47 | ||
| 48 | all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_applibexecdir}/Emacs.pdmp | 48 | all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_applibexecdir}/Emacs.pdmp |
| 49 | 49 | ||
| 50 | ${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc} | 50 | ${ns_check_file}: ${ns_appdir} |
| 51 | |||
| 52 | ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc} | ||
| 51 | rm -rf ${ns_appdir} | 53 | rm -rf ${ns_appdir} |
| 52 | ${MKDIR_P} ${ns_appdir} | 54 | ${MKDIR_P} ${ns_appdir} |
| 53 | ( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \ | 55 | ( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \ |