Load all pathname types on every operating system. This allows
authorChris Hanson <org/chris-hanson/cph>
Thu, 4 Mar 1999 05:56:18 +0000 (05:56 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 4 Mar 1999 05:56:18 +0000 (05:56 +0000)
pathname objects dumped on one system to be used on another.

v7/src/runtime/runtime.pkg
v8/src/runtime/runtime.pkg

index 2e72c06c35afd6c0e1dcbb7b6ffaf0f63d0efe37..3941b882d4bd4661245a71c9694d34576ee74e0a 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: runtime.pkg,v 14.320 1999/02/24 21:37:18 cph Exp $
+$Id: runtime.pkg,v 14.321 1999/03/04 05:55:08 cph Exp $
 
 Copyright (c) 1988-1999 Massachusetts Institute of Technology
 
@@ -1685,17 +1685,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   (initialization (initialize-package!)))
 
 (define-package (runtime pathname unix)
+  (files "unxpth")
   (parent (runtime pathname))
-  (file-case os-type
-   ((unix) "unxpth")
-   (else))
   (initialization (initialize-package!)))
 
 (define-package (runtime pathname dos)
+  (files "dospth")
   (parent (runtime pathname))
-  (file-case os-type
-   ((dos nt os/2) "dospth")
-   (else))
   (initialization (initialize-package!)))
 
 (define-package (runtime population)
index cc5c06bbf369f5260d6b75c5439c9b9f2af0a792..437205be369e1fd602a5905d513694506a146b00 100644 (file)
@@ -1,6 +1,6 @@
 #| -*-Scheme-*-
 
-$Id: runtime.pkg,v 14.325 1999/02/24 21:37:22 cph Exp $
+$Id: runtime.pkg,v 14.326 1999/03/04 05:56:18 cph Exp $
 
 Copyright (c) 1988-1999 Massachusetts Institute of Technology
 
@@ -1689,17 +1689,13 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   (initialization (initialize-package!)))
 
 (define-package (runtime pathname unix)
+  (files "unxpth")
   (parent (runtime pathname))
-  (file-case os-type
-   ((unix) "unxpth")
-   (else))
   (initialization (initialize-package!)))
 
 (define-package (runtime pathname dos)
+  (files "dospth")
   (parent (runtime pathname))
-  (file-case os-type
-   ((dos nt os/2) "dospth")
-   (else))
   (initialization (initialize-package!)))
 
 (define-package (runtime population)