From: Nathan Froyd Date: Tue, 7 Nov 2006 01:02:50 +0000 (+0000) Subject: 0.9.18.35: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=74476aa8940b2b2bc98ba46003a37ab558f608af;p=sbcl.git 0.9.18.35: Commit Matthew Swank's "patch to allow compiler dependent doc to build under cygwin/win32", sbcl-devel 2006-11-06. --- diff --git a/doc/manual/make-tempfiles.sh b/doc/manual/make-tempfiles.sh index f520b22..2f7fc38 100644 --- a/doc/manual/make-tempfiles.sh +++ b/doc/manual/make-tempfiles.sh @@ -16,12 +16,15 @@ if [ -z "$1" ] then - sbclsystem=`pwd`/../../src/runtime/sbcl - sbclcore=`pwd`/../../output/sbcl.core + . ../../sbcl-pwd.sh + sbcl_pwd + + sbclsystem=$SBCL_PWD/../../src/runtime/sbcl + sbclcore=$SBCL_PWD/../../output/sbcl.core if [ -e $sbclsystem ] && [ -e $sbclcore ] then SBCLRUNTIME="$sbclsystem --core $sbclcore" - SBCL_HOME=`pwd`/../../contrib/; export SBCL_HOME + SBCL_HOME=$SBCL_PWD/../../contrib/; export SBCL_HOME SBCL_BUILDING_CONTRIB="please asdf install your hook"; export SBCL_BUILDING_CONTRIB else SBCLRUNTIME="`which sbcl`" @@ -30,7 +33,7 @@ else SBCLRUNTIME="$1" fi -SBCL="$SBCLRUNTIME --noinform --sysinit /dev/null --userinit /dev/null --noprint --disable-debugger" +SBCL="$SBCLRUNTIME --noinform --no-sysinit --no-userinit --noprint --disable-debugger" # extract version and date VERSION=`$SBCL --eval '(write-line (lisp-implementation-version))' --eval '(sb-ext:quit)'` diff --git a/version.lisp-expr b/version.lisp-expr index ea7bfbc..ceadad6 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.18.34" +"0.9.18.35"