From 2a03fda8299baea66cb9a6955d414dcc27af5ac9 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Mon, 6 Oct 2008 09:16:47 +0000 Subject: [PATCH] 1.0.21.7: fix argument quoting in run-sbcl.sh * Now things like sh run-sbcl.sh --eval '(load "foo.lisp")' should work correctly. --- run-sbcl.sh | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run-sbcl.sh b/run-sbcl.sh index f7ddb22..1f74680 100644 --- a/run-sbcl.sh +++ b/run-sbcl.sh @@ -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 diff --git a/version.lisp-expr b/version.lisp-expr index 34068eb..b8c236a 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4