From b59bbd31d7e463d4ecd1530a8173d611b1938231 Mon Sep 17 00:00:00 2001 From: Rudi Schlatte Date: Tue, 30 Aug 2005 13:05:30 +0000 Subject: [PATCH] 0.9.4.15 Fix a rare case of documentation build breakage: if asdf.lisp is newer than asdf.fasl, subsequent requires fail since asdf doesn't install itself in *module-provider-functions* if loaded from source --- doc/manual/Makefile | 1 + doc/manual/make-tempfiles.sh | 4 +++- version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/manual/Makefile b/doc/manual/Makefile index 02ea7c4..45f89ea 100644 --- a/doc/manual/Makefile +++ b/doc/manual/Makefile @@ -96,6 +96,7 @@ clean: rm -rf $(HTMLDIRS) $(DOCSTRINGDIR) rm -f contrib-docs.texi-temp rm -f package-locks.texi-temp + rm -f variables.texinfo rm -f $(PSFILES) $(PDFFILES) html-stamp tempfiles-stamp rm -f $(TMPFILES) $(INDEXFILES) rm -f sbcl.info sbcl.info-* asdf.info diff --git a/doc/manual/make-tempfiles.sh b/doc/manual/make-tempfiles.sh index dc7a6c7..2f135a1 100644 --- a/doc/manual/make-tempfiles.sh +++ b/doc/manual/make-tempfiles.sh @@ -21,7 +21,8 @@ then if [ -e $sbclsystem ] && [ -e $sbclcore ] then SBCLRUNTIME="$sbclsystem --core $sbclcore" - SBCL_HOME=`pwd`/../../contrib; export SBCL_HOME + SBCL_HOME=`pwd`/../../contrib/; export SBCL_HOME + SBCL_BUILDING_CONTRIB="please asdf install your hook"; export SBCL_BUILDING_CONTRIB else SBCLRUNTIME="`which sbcl`" fi @@ -54,6 +55,7 @@ DOCSTRINGDIR="${DOCSTRINGDIR:-docstrings/}" echo /creating docstring snippets from SBCL=\'$SBCLRUNTIME\' for packages \'$PACKAGES\' $SBCL <