From e33e99504666fda29c1b3cc4ed2daa579aa90df1 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Thu, 21 Oct 2004 13:00:16 +0000 Subject: [PATCH] 0.8.15.20: Fix HTML installation * On some systems we were installing the HTML docs in ever deeper directories on every install. Make it not so, and try to stick to commandline flags actually specified in SUV3. Reported by Stefan Scholl. --- NEWS | 3 +++ install.sh | 2 +- version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 292ee48..5f93cfa 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ changes in sbcl-0.8.16 relative to sbcl-0.8.15: * enhancement: saving cores with foreign code loaded is now supported on x86/NetBSD and sparc/Linux in addition to the previously supported platforms. + * bug fix: on some platforms repeated installations caused multiple + copies of HTML documentation to be installed -- should not happen + any more. (reported by Stefan Scholl) * bug fix: parsing self-recursive alien record types multiple times no longer causes infinite recursion. (reported by Thomas F. Burdick, original patch by Helmut Eller for CMUCL) diff --git a/install.sh b/install.sh index 0f21d24..fbad2a8 100644 --- a/install.sh +++ b/install.sh @@ -99,7 +99,7 @@ done # html for html in doc/manual/sbcl doc/manual/asdf do - test -d $html && cp -r $html $BUILD_ROOT$DOC_DIR/html/`basename $html` \ + test -d $html && cp -R -L $html $BUILD_ROOT$DOC_DIR/html \ && echo " html $BUILD_ROOT$DOC_DIR/html/`basename $html`/index.html" done diff --git a/version.lisp-expr b/version.lisp-expr index cd83ec5..1b4b8ba 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.8.15.19" +"0.8.15.20" -- 1.7.10.4