1.0.21.7: fix argument quoting in run-sbcl.sh
authorNikodemus Siivola <nikodemus@random-state.net>
Mon, 6 Oct 2008 09:16:47 +0000 (09:16 +0000)
committerNikodemus Siivola <nikodemus@random-state.net>
Mon, 6 Oct 2008 09:16:47 +0000 (09:16 +0000)
 * Now things like

      sh run-sbcl.sh --eval '(load "foo.lisp")'

   should work correctly.

run-sbcl.sh
version.lisp-expr

index f7ddb22..1f74680 100644 (file)
@@ -30,7 +30,7 @@ if [ -f sbcl-pwd.sh -a -x src/runtime/sbcl -a -f output/sbcl.core ]; then
     . ./sbcl-pwd.sh
     sbcl_pwd
     echo "(running SBCL from: $SBCL_PWD)"
-    SBCL_HOME=$SBCL_PWD/contrib src/runtime/sbcl --core output/sbcl.core $@
+    SBCL_HOME=$SBCL_PWD/contrib src/runtime/sbcl --core output/sbcl.core "$@"
 elif [ -f run-sbcl.sh -a -f version.lisp-expr ]; then
     echo "No built SBCL here ($(pwd)): run 'sh make.sh' first!"
     exit 1
index 34068eb..b8c236a 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.21.6"
+"1.0.21.7"