Make contrib modules build on win32/cygwin
... resolve bogus /cygdrive/x/... paths
# 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
;;; 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"