Skip to content

Commit 94ec584

Browse files
committed
Fix :force setting.
Having :force :all caused recompilation of Alexandria, emitting warnings and erroneously breaking the build. The script specifically loads warning-emitting dependencies *before* `load-system` on FiveAM.
1 parent f2f69a7 commit 94ec584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
(error #'(lambda (x)
5858
(setf *build-error* x)
5959
(throw 'build-failed t))))
60-
(asdf:load-system "fiveam" :force :all)))
60+
(asdf:load-system "fiveam" :force t)))
6161

6262
(cond
6363
(*build-error*

0 commit comments

Comments
 (0)