From: Alastair Bridgewater Date: Sun, 27 Jun 2010 19:41:07 +0000 (+0000) Subject: 1.0.39.23: Fix run-sbcl.sh to use absolute paths when necessary. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=9c66b18385fb021e17eb8319a6cc4eb2cb7cb910;p=sbcl.git 1.0.39.23: Fix run-sbcl.sh to use absolute paths when necessary. * The new ASDF 2 requires absolute paths in places where SBCL historically used relative paths. The last(?) remaining place where this happens is the SBCL_HOME environment variable set up by run-sbcl.sh. Fixed by introducing a readlink -f to generate an absolute path to the base SBCL directory. --- diff --git a/run-sbcl.sh b/run-sbcl.sh index f1876c3..24c0b3d 100644 --- a/run-sbcl.sh +++ b/run-sbcl.sh @@ -14,6 +14,7 @@ set -e BASE=`dirname "$0"` +BASE=`readlink -f ${BASE}` CORE_DEFINED=no for arg in $*; do diff --git a/version.lisp-expr b/version.lisp-expr index 4fc5dc0..fd7dbb8 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.39.22" +"1.0.39.23"