X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=run-sbcl.sh;h=a3507d168c8d82af123c0b6ae11c763699f76eb7;hb=518493eab883e50237043153c0d45b245e929c7d;hp=26dc4068928f7cbb60b642f7de6d434f543de833;hpb=26d0559df82a00acf85b8ec89541ee8e09bb3e55;p=sbcl.git diff --git a/run-sbcl.sh b/run-sbcl.sh old mode 100644 new mode 100755 index 26dc406..a3507d1 --- a/run-sbcl.sh +++ b/run-sbcl.sh @@ -22,6 +22,10 @@ else BASE=`pwd` cd "${opwd}" fi +if [ "$OSTYPE" = "cygwin" ] +then + BASE=`cygpath -w "$BASE"` +fi CORE_DEFINED=no for arg in $*; do @@ -48,7 +52,7 @@ if [ "$CORE_DEFINED" = "no" ]; then fi if [ -x "$BASE"/src/runtime/sbcl -a -f "$BASE"/output/sbcl.core ]; then - echo "(running SBCL from: $BASE)" + echo "(running SBCL from: $BASE)" 1>&2 SBCL_HOME="$BASE"/contrib "$BASE"/src/runtime/sbcl $ARGUMENTS "$@" else echo "No built SBCL here ($BASE): run 'sh make.sh' first!"