From: Rudi Schlatte Date: Tue, 28 Mar 2006 14:35:40 +0000 (+0000) Subject: 0.9.11.5 X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=e0f344219fe6cd5329aae9fc343466bcd71d4edf;p=sbcl.git 0.9.11.5 Make contrib modules build on win32/cygwin ... resolve bogus /cygdrive/x/... paths --- diff --git a/make-target-contrib.sh b/make-target-contrib.sh index 9823d37..24c91c3 100644 --- a/make-target-contrib.sh +++ b/make-target-contrib.sh @@ -25,10 +25,16 @@ find_gnumake # build directory. Right now, however, where there are dependencies # between contrib packages, we want the _uninstalled_ versions to be # found -SBCL_HOME=`pwd`/contrib +if [ "$OSTYPE" = "cygwin" ] ; then + SBCL_BASE=$(cygpath -m $(pwd)) +else + SBCL_BASE=`pwd` +fi +SBCL_HOME=$SBCL_BASE/contrib export SBCL_HOME -SBCL="`pwd`/src/runtime/sbcl --noinform --core `pwd`/output/sbcl.core --userinit /dev/null --sysinit /dev/null --disable-debugger" + +SBCL="$SBCL_BASE/src/runtime/sbcl --noinform --core $SBCL_BASE/output/sbcl.core --disable-debugger" SBCL_BUILDING_CONTRIB=1 export SBCL SBCL_BUILDING_CONTRIB diff --git a/version.lisp-expr b/version.lisp-expr index 974877b..23c6d0c 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".) -"0.9.11.4" +"0.9.11.5"