From 73844bc6eed2f9477a2b9ddee3791adab03e35b8 Mon Sep 17 00:00:00 2001 From: shivers Date: Fri, 18 Apr 1997 02:04:59 +0000 Subject: [PATCH] Fixed bug whereby the scsh heap image rule was trying to load the floating pt code from the install dir before the code had been installed. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index bfa5652..9583cf0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -630,6 +630,7 @@ scsh/scsh: scsh/scsh-tramp.c scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image (echo ",translate =scheme48/ $(srcdir)/"; \ echo ",batch on"; \ + echo ",load-package floatnums"; \ echo ",open externals"; \ echo "(lookup-all-externals)"; \ echo ",config"; \ @@ -639,7 +640,6 @@ scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image echo ",load $(srcdir)/scsh/scsh-package.scm"; \ echo ",load-package scsh"; \ echo ",load-package scsh-here-string-hax"; \ - echo ",load-package floatnums"; \ echo ",translate =scheme48/ $(LIB)/"; \ echo ",in scsh-level-0"; \ echo "(%install-scsh-handlers)"; \