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.
This commit is contained in:
parent
a4bbf1d2f6
commit
73844bc6ee
|
@ -630,6 +630,7 @@ scsh/scsh: scsh/scsh-tramp.c
|
||||||
scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
||||||
(echo ",translate =scheme48/ $(srcdir)/"; \
|
(echo ",translate =scheme48/ $(srcdir)/"; \
|
||||||
echo ",batch on"; \
|
echo ",batch on"; \
|
||||||
|
echo ",load-package floatnums"; \
|
||||||
echo ",open externals"; \
|
echo ",open externals"; \
|
||||||
echo "(lookup-all-externals)"; \
|
echo "(lookup-all-externals)"; \
|
||||||
echo ",config"; \
|
echo ",config"; \
|
||||||
|
@ -639,7 +640,6 @@ scsh/scsh.image: $(VM) $(SCHEME) $(CIG).image
|
||||||
echo ",load $(srcdir)/scsh/scsh-package.scm"; \
|
echo ",load $(srcdir)/scsh/scsh-package.scm"; \
|
||||||
echo ",load-package scsh"; \
|
echo ",load-package scsh"; \
|
||||||
echo ",load-package scsh-here-string-hax"; \
|
echo ",load-package scsh-here-string-hax"; \
|
||||||
echo ",load-package floatnums"; \
|
|
||||||
echo ",translate =scheme48/ $(LIB)/"; \
|
echo ",translate =scheme48/ $(LIB)/"; \
|
||||||
echo ",in scsh-level-0"; \
|
echo ",in scsh-level-0"; \
|
||||||
echo "(%install-scsh-handlers)"; \
|
echo "(%install-scsh-handlers)"; \
|
||||||
|
|
Loading…
Reference in New Issue