Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23962
Modified Files:
version.lisp-expr NEWS install.sh
Log Message:
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.
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.1860
retrieving revision 1.1861
diff -u -d -r1.1860 -r1.1861
--- version.lisp-expr 20 Oct 2004 16:29:55 -0000 1.1860
+++ version.lisp-expr 21 Oct 2004 13:00:16 -0000 1.1861
@@ -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"
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.638
retrieving revision 1.639
diff -u -d -r1.638 -r1.639
--- NEWS 18 Oct 2004 14:59:34 -0000 1.638
+++ NEWS 21 Oct 2004 13:00:22 -0000 1.639
@@ -2,6 +2,9 @@
* 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)
Index: install.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/install.sh,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- install.sh 18 Aug 2004 12:58:41 -0000 1.18
+++ install.sh 21 Oct 2004 13:00:23 -0000 1.19
@@ -99,7 +99,7 @@
# 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
|