From b722521aea8ccd801d12afe519871ab34b8d789f Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Sat, 13 Apr 2013 22:12:36 -0700
Subject: [PATCH] Oops. Always build asdf and friends.

---
 bin/build.sh | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/bin/build.sh b/bin/build.sh
index 99d0a43aa..496d64175 100755
--- a/bin/build.sh
+++ b/bin/build.sh
@@ -247,23 +247,24 @@ fi
 BUILD=3
 buildit
 
+# Asdf and friends are part of the base install, so we need to build
+# them now.
+$TARGET/lisp/lisp $FPU_MODE -noinit -nositeinit -batch "$@" << EOF || exit 3
+(in-package :cl-user)
+(setf (ext:search-list "target:")
+      '("$TARGET/" "src/"))
+(setf (ext:search-list "modules:")
+      '("target:contrib/"))
+
+(compile-file "modules:asdf/asdf")
+(compile-file "modules:defsystem/defsystem")
+EOF
+
+
 if [ "$SKIPUTILS" = "no" ];
 then
     OLDLISP="${BASE}-4/lisp/lisp $OLDLISPFLAGS $FPU_MODE"
     time $TOOLDIR/build-utils.sh $TARGET $FPU_MODE
-else
-# But asdf and friends are part of the base install, so we need to build them.
-    $TARGET/lisp/lisp -noinit -nositeinit -batch "$@" << EOF || exit 3
-    (in-package :cl-user)
-    (setf (ext:search-list "target:")
-	  '("$TARGET/" "src/"))
-    (setf (ext:search-list "modules:")
-	  '("target:contrib/"))
-
-    (compile-file "modules:asdf/asdf")
-    (compile-file "modules:defsystem/defsystem")
-EOF
-
 fi
 
 build_finished=`date`
-- 
GitLab