X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=doc%2Fmanual%2Fmake-tempfiles.sh;h=c212d74cc96f302091de7344a9bf9cf0294b946f;hb=4783db4884a231e8d217ce85feaa2c32a53ef6b9;hp=f520b227f244d10edb4aacd9edaa9a316fbe02a9;hpb=04d819bb1a2e64de4e997203b9516229bb73c686;p=sbcl.git diff --git a/doc/manual/make-tempfiles.sh b/doc/manual/make-tempfiles.sh index f520b22..c212d74 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 - if [ -e $sbclsystem ] && [ -e $sbclcore ] + . ../../sbcl-pwd.sh + sbcl_pwd + + sbclsystem=$SBCL_PWD/../../src/runtime/sbcl + sbclcore=$SBCL_PWD/../../output/sbcl.core + if [ -f $sbclsystem ] && [ -f $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)'` @@ -69,3 +72,16 @@ then else cp package-locks-basic.texinfo package-locks.texi-temp fi + +echo /creating encodings.texi-temp +$SBCL <