From 6ca026b2765c93e69807841d772108c9ee6619ff Mon Sep 17 00:00:00 2001
From: Chris Hanson <org/chris-hanson/cph>
Date: Mon, 16 Oct 2000 18:19:51 +0000
Subject: [PATCH] Must load CREF before compiling other stuff.

---
 v7/src/etc/bootstrap-compile.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/v7/src/etc/bootstrap-compile.scm b/v7/src/etc/bootstrap-compile.scm
index c4dfd27c7..734052578 100644
--- a/v7/src/etc/bootstrap-compile.scm
+++ b/v7/src/etc/bootstrap-compile.scm
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: bootstrap-compile.scm,v 1.1 2000/10/16 18:17:49 cph Exp $
+$Id: bootstrap-compile.scm,v 1.2 2000/10/16 18:19:51 cph Exp $
 
 Copyright (c) 2000 Massachusetts Institute of Technology
 
@@ -21,12 +21,17 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 (sf "microcode/utabmd")
 
+(with-working-directory-pathname name
+  (lambda ()
+    (load "cref.sf")
+    (load "cref.cbf")))
+
 (for-each (lambda (name)
 	    (with-working-directory-pathname name
 	      (lambda ()
 		(load (pathname-new-type name "sf"))
 		(load (pathname-new-type name "cbf")))))
-	  '("cref" "runtime" "sf" "compiler" "edwin" "6001"))
+	  '("runtime" "sf" "compiler" "edwin" "6001"))
 
 (for-each (lambda (name)
 	    (load (merge-pathnames "compile" (pathname-as-directory name))))
-- 
2.25.1