diff options
author | Brian Cully <bjc@kublai.com> | 2008-10-03 00:58:42 -0400 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2008-10-03 00:58:42 -0400 |
commit | a4b4c79c6eecd3749f51ee6e036171c42955fcd1 (patch) | |
tree | a6301d9f78a7b50d6e73ce703daafb5bc20746bf /Lisp | |
parent | 522afc85e8d243510e9af74e865051c952e7092a (diff) | |
download | moxie-a4b4c79c6eecd3749f51ee6e036171c42955fcd1.tar.gz moxie-a4b4c79c6eecd3749f51ee6e036171c42955fcd1.zip |
only make clisp/base if we're building with clisp, and use -p
Diffstat (limited to 'Lisp')
-rwxr-xr-x | Lisp/build-lisp-image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lisp/build-lisp-image.sh b/Lisp/build-lisp-image.sh index 5eb0973..0478f25 100755 --- a/Lisp/build-lisp-image.sh +++ b/Lisp/build-lisp-image.sh @@ -5,6 +5,7 @@ export PATH build_clisp() { + mkdir -p $topdir/clisp/base clisp -i save-moxie-image.lisp gzip -c /tmp/lispinit.mem > base/lispinit.mem rm -f /tmp/lispinit.mem @@ -24,7 +25,6 @@ build_sbcl() topdir=`dirname $0` -mkdir $topdir/clisp/base #(cd "$topdir/clisp" && build_clisp) #(cd "$topdir/openmcl" && build_openmcl) (cd "$topdir/sbcl" && build_sbcl) |