repo.or.cz
/
sbcl
/
pkhuong.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1.0.18.25: tweak stack allocation on x86 and x86-64
[sbcl/pkhuong.git]
/
sbcl-pwd.sh
blob
a835689758ec6c99058ef53680a4cdcfbeac8955
1
#!/bin/false
2
# Not a shell script, but something intended to be sourced from shell scripts
3
4
# This ensures that SBCL_PWD is a path understandable to SBCL.
5
6
sbcl_pwd
() {
7
if
[
"
$OSTYPE
"
=
"cygwin"
] ;
then
8
SBCL_PWD
=
"`cygpath -m
\"
$(pwd)
\"
`"
9
else
10
SBCL_PWD
=
"`pwd`"
11
fi
12
export
SBCL_PWD
13
}