File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 16
16
17
17
if [ -z " $1 " ]
18
18
then
19
- sbclsystem=` pwd` /../../src/runtime/sbcl
20
- sbclcore=` pwd` /../../output/sbcl.core
19
+ . ../../sbcl-pwd.sh
20
+ sbcl_pwd
21
+
22
+ sbclsystem=$SBCL_PWD /../../src/runtime/sbcl
23
+ sbclcore=$SBCL_PWD /../../output/sbcl.core
21
24
if [ -e $sbclsystem ] && [ -e $sbclcore ]
22
25
then
23
26
SBCLRUNTIME=" $sbclsystem --core $sbclcore "
24
- SBCL_HOME=` pwd ` /../../contrib/; export SBCL_HOME
27
+ SBCL_HOME=$SBCL_PWD /../../contrib/; export SBCL_HOME
25
28
SBCL_BUILDING_CONTRIB=" please asdf install your hook" ; export SBCL_BUILDING_CONTRIB
26
29
else
27
30
SBCLRUNTIME=" ` which sbcl` "
30
33
SBCLRUNTIME=" $1 "
31
34
fi
32
35
33
- SBCL=" $SBCLRUNTIME --noinform --sysinit /dev/null -- userinit /dev/null --noprint --disable-debugger"
36
+ SBCL=" $SBCLRUNTIME --noinform --no- sysinit --no- userinit --noprint --disable-debugger"
34
37
35
38
# extract version and date
36
39
VERSION=` $SBCL --eval ' (write-line (lisp-implementation-version))' --eval ' (sb-ext:quit)' `
Original file line number Diff line number Diff line change 17
17
;;; checkins which aren't released. (And occasionally for internal
18
18
;;; versions, especially for internal versions off the main CVS
19
19
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
20
- "0.9.18.34 "
20
+ "0.9.18.35 "
You can’t perform that action at this time.
0 commit comments