From 99af56524d99ea21fe387e2657f38232d475d40b Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Tue, 17 Aug 2010 11:35:24 +0000 Subject: [PATCH] 1.0.41.48: make run-sbcl.sh work on Darwin (and presumably other BSD-clones) * BSD readlink doesn't support -f, fall back on dirname if readlink didn't work. --- 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 24c0b3d..83f40c1 100644 --- a/run-sbcl.sh +++ b/run-sbcl.sh @@ -14,7 +14,7 @@ set -e BASE=`dirname "$0"` -BASE=`readlink -f ${BASE}` +BASE=`(readlink -f ${BASE} 2> /dev/null || echo ${BASE})` CORE_DEFINED=no for arg in $*; do diff --git a/version.lisp-expr b/version.lisp-expr index a934320..d4b5ac7 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.41.47" +"1.0.41.48" -- 1.7.10.4