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:
Mattias Engdegård 2022-06-10 10:22:24 +02:00
parent 307ef05587
commit 068ce6411d

View file

@ -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 - . ) | \