diff --git a/tools/worldbuild.lisp b/tools/worldbuild.lisp
index 1c6b0ee654bf6dfe8cebe5c565c0eddef924bfb1..8e68ddec63740c4332353164beaa5b12ee63e697 100644
--- a/tools/worldbuild.lisp
+++ b/tools/worldbuild.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.36 1997/09/24 06:19:06 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.37 1997/11/04 14:47:32 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -89,7 +89,9 @@
     "target:code/irrat"
     "target:code/bignum"
     "target:code/list"
-    "target:code/hash"
+    ,@(if (c:backend-featurep :hash-new)
+	'("target:code/hash-new")
+	'("target:code/hash"))
     "target:code/macros"
     "target:code/symbol"
     "target:code/string"
diff --git a/tools/worldcom.lisp b/tools/worldcom.lisp
index 2d1518e240c968330e5d1747c5cc90f22545a9a8..245d1bf1e57e619d185695df001a6c7e0e779094 100644
--- a/tools/worldcom.lisp
+++ b/tools/worldcom.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.73 1997/09/24 06:19:05 dtc Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.74 1997/11/04 14:47:31 dtc Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -125,7 +125,9 @@
 (comf "target:code/bit-bash")
 (comf "target:code/byte-interp")
 (comf "target:code/array")
-(comf "target:code/hash")
+(if (c:backend-featurep :hash-new)
+    (comf "target:code/hash-new")
+    (comf "target:code/hash"))
 
 (with-compilation-unit
   (:optimize '(optimize (safety 1)))