From 4c4e3579b97003e54b747fa9c1fb70c761026b31 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 22 Apr 2009 20:14:09 +0000 Subject: [PATCH] 1.0.27.23: fix bashism in sbcl-pwd.sh * OSTYPE might not be set in a non-bash shell. --- sbcl-pwd.sh | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sbcl-pwd.sh b/sbcl-pwd.sh index a835689..dcf677b 100644 --- a/sbcl-pwd.sh +++ b/sbcl-pwd.sh @@ -4,7 +4,7 @@ # This ensures that SBCL_PWD is a path understandable to SBCL. sbcl_pwd() { - if [ "$OSTYPE" = "cygwin" ] ; then + if [ "${OSTYPE:-}" = "cygwin" ] ; then SBCL_PWD="`cygpath -m \"$(pwd)\"`" else SBCL_PWD="`pwd`" diff --git a/version.lisp-expr b/version.lisp-expr index e1e7347..564bdcc 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.27.22" +"1.0.27.23" -- 1.7.10.4