Update of /cvsroot/sbcl/sbcl
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv10893
Modified Files:
run-sbcl.sh version.lisp-expr
Log Message:
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.
Index: run-sbcl.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/run-sbcl.sh,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- run-sbcl.sh 25 Mar 2010 12:24:39 -0000 1.6
+++ run-sbcl.sh 27 Jun 2010 19:41:07 -0000 1.7
@@ -14,6 +14,7 @@
set -e
BASE=`dirname "$0"`
+BASE=`readlink -f ${BASE}`
CORE_DEFINED=no
for arg in $*; do
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.4903
retrieving revision 1.4904
diff -u -d -r1.4903 -r1.4904
--- version.lisp-expr 26 Jun 2010 05:03:58 -0000 1.4903
+++ version.lisp-expr 27 Jun 2010 19:41:08 -0000 1.4904
@@ -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"
|