From 92fb90203c40602cd239cc85774a9dcab2f5a78f Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sat, 21 Mar 2015 11:37:34 +0000 Subject: [PATCH] better dependencies in asdf Makefile supports parallel make; thanks to Nikhil Benesch --- NEWS | 3 +++ contrib/asdf/Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 115111ba4..aa141d63c 100644 --- a/NEWS +++ b/NEWS @@ -30,6 +30,9 @@ changes relative to sbcl-1.2.9: would produce an invalid fasl file. (lp#1427050) * bug fix: The compiler no longer signals an internal error when encountering invalid FUNCTION forms like (function 1) + * bug fix: express proper dependencies in the ASDF contrib, to support + systems where make runs in parallel. (lp#1434768; thanks to Nikhil + Benesch) changes in sbcl-1.2.9 relative to sbcl-1.2.8: * minor incompatible change and bug fix: unboxed numeric constants diff --git a/contrib/asdf/Makefile b/contrib/asdf/Makefile index 7e52052eb..57ce3e15c 100644 --- a/contrib/asdf/Makefile +++ b/contrib/asdf/Makefile @@ -8,7 +8,7 @@ $(UIOP_FASL):: uiop.lisp ../../output/sbcl.core mkdir -p $(DEST) $(SBCL) --eval '(compile-file #p"SYS:CONTRIB;ASDF;UIOP.LISP" :output-file (parse-native-namestring "$@"))'