Skip to content

Commit

Permalink
1.0.41.48: make run-sbcl.sh work on Darwin (and presumably other BSD-…
Browse files Browse the repository at this point in the history
…clones)

 * BSD readlink doesn't support -f, fall back on dirname if readlink
   didn't work.
  • Loading branch information
nikodemus committed Aug 17, 2010
1 parent b569661 commit 99af565
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion run-sbcl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 99af565

Please sign in to comment.