emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 068ce6411d: Fix macOS parallel bootstrap error (bug#55846)


From: Mattias Engdegård
Subject: master 068ce6411d: Fix macOS parallel bootstrap error (bug#55846)
Date: Fri, 10 Jun 2022 04:37:41 -0400 (EDT)

branch: master
commit 068ce6411d20646ac5a8a80a79167068b3247554
Author: Mattias Engdegård <mattiase@acm.org>
Commit: Mattias Engdegård <mattiase@acm.org>

    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.
---
 nextstep/Makefile.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/nextstep/Makefile.in b/nextstep/Makefile.in
index 92d7f28fe6..9c7059f2c0 100644
--- a/nextstep/Makefile.in
+++ b/nextstep/Makefile.in
@@ -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 - . ) | \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]