sbcl.sbcl/sbcl-pwd.sh
Rudi Schlatte 3126dc3519 0.9.14.1
Fix typo for building under cygwin
2006-06-27 12:52:34 +00:00

14 lines
292 B
Bash

#!/bin/false
# Not a shell script, but something intended to be sourced from shell scripts
# This ensures that SBCL_PWD is a path understandable to SBCL.
sbcl_pwd() {
if [ "$OSTYPE" = "cygwin" ] ; then
SBCL_PWD=`cygpath -m $(pwd)`
else
SBCL_PWD=`pwd`
fi
export SBCL_PWD
}