Fix incorrect package references for files loaded at the very
authorChris Hanson <org/chris-hanson/cph>
Thu, 15 Jan 2004 20:58:36 +0000 (20:58 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 15 Jan 2004 20:58:36 +0000 (20:58 +0000)
beginning of the boot.

v7/src/runtime/make.scm

index 47a44b4398eb38e92b05578b29fbe9a5180d5bac..a643922f54bc86746e3fc1d405f8fd9022efaed1 100644 (file)
@@ -1,10 +1,10 @@
 #| -*-Scheme-*-
 
-$Id: make.scm,v 14.91 2003/04/14 19:56:18 cph Exp $
+$Id: make.scm,v 14.92 2004/01/15 20:58:36 cph Exp $
 
-Copyright (c) 1988,1989,1990,1991,1992 Massachusetts Institute of Technology
-Copyright (c) 1993,1994,1995,1996,1997 Massachusetts Institute of Technology
-Copyright (c) 1998,2000,2001,2002,2003 Massachusetts Institute of Technology
+Copyright 1988,1989,1990,1991,1992,1993 Massachusetts Institute of Technology
+Copyright 1994,1995,1996,1997,1998,2000 Massachusetts Institute of Technology
+Copyright 2001,2002,2003,2004 Massachusetts Institute of Technology
 
 This file is part of MIT/GNU Scheme.
 
@@ -355,13 +355,13 @@ USA.
 (let ((files1
        '(("gcdemn" . (RUNTIME GC-DAEMONS))
         ("gc" . (RUNTIME GARBAGE-COLLECTOR))
-        ("boot" . ())
-        ("queue" . ())
-        ("equals" . ())
+        ("boot" . (RUNTIME BOOT-DEFINITIONS))
+        ("queue" . (RUNTIME SIMPLE-QUEUE))
+        ("equals" . (RUNTIME EQUALITY))
         ("list" . (RUNTIME LIST))
-        ("symbol" . ())
+        ("symbol" . (RUNTIME SYMBOL))
         ("uproc" . (RUNTIME PROCEDURE))
-        ("fixart" . ())
+        ("fixart" . (RUNTIME FIXNUM-ARITHMETIC))
         ("random" . (RUNTIME RANDOM-NUMBER))
         ("gentag" . (RUNTIME GENERIC-PROCEDURE))
         ("poplat" . (RUNTIME POPULATION))