Skip to content

Commit 74476aa

Browse files
author
Nathan Froyd
committed
0.9.18.35:
Commit Matthew Swank's "patch to allow compiler dependent doc to build under cygwin/win32", sbcl-devel 2006-11-06.
1 parent 6010af2 commit 74476aa

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

Diff for: doc/manual/make-tempfiles.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,15 @@
1616

1717
if [ -z "$1" ]
1818
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
2124
if [ -e $sbclsystem ] && [ -e $sbclcore ]
2225
then
2326
SBCLRUNTIME="$sbclsystem --core $sbclcore"
24-
SBCL_HOME=`pwd`/../../contrib/; export SBCL_HOME
27+
SBCL_HOME=$SBCL_PWD/../../contrib/; export SBCL_HOME
2528
SBCL_BUILDING_CONTRIB="please asdf install your hook"; export SBCL_BUILDING_CONTRIB
2629
else
2730
SBCLRUNTIME="`which sbcl`"
@@ -30,7 +33,7 @@ else
3033
SBCLRUNTIME="$1"
3134
fi
3235

33-
SBCL="$SBCLRUNTIME --noinform --sysinit /dev/null --userinit /dev/null --noprint --disable-debugger"
36+
SBCL="$SBCLRUNTIME --noinform --no-sysinit --no-userinit --noprint --disable-debugger"
3437

3538
# extract version and date
3639
VERSION=`$SBCL --eval '(write-line (lisp-implementation-version))' --eval '(sb-ext:quit)'`

Diff for: version.lisp-expr

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
;;; checkins which aren't released. (And occasionally for internal
1818
;;; versions, especially for internal versions off the main CVS
1919
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
20-
"0.9.18.34"
20+
"0.9.18.35"

0 commit comments

Comments
 (0)