mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
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.
This commit is contained in:
parent
307ef05587
commit
068ce6411d
1 changed files with 3 additions and 1 deletions
|
|
@ -47,7 +47,9 @@ ns_check_file = @ns_appdir@/@ns_check_file@
|
|||
|
||||
all: ${ns_appdir} ${ns_appbindir}/Emacs ${ns_applibexecdir}/Emacs.pdmp
|
||||
|
||||
${ns_check_file} ${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
|
||||
${ns_check_file}: ${ns_appdir}
|
||||
|
||||
${ns_appdir}: ${srcdir}/${ns_appsrc} ${ns_appsrc}
|
||||
rm -rf ${ns_appdir}
|
||||
${MKDIR_P} ${ns_appdir}
|
||||
( cd ${srcdir}/${ns_appsrc} ; tar cfh - . ) | \
|
||||
|
|
|
|||
Loading…
Reference in a new issue