Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1:/tmp/cvs-serv18885
Modified Files:
NEWS binary-distribution.sh version.lisp-expr
Log Message:
0.8.3.18:
Allow RUN-PROGRAM to work even when something in $PATH is not
an existent directory:
... patch from Andreas Fuchs sbcl-devel 2003-08-26;
... add a test case;
Also, need find-gnumake.sh in binary distributions:
... make it so!
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.390
retrieving revision 1.391
diff -u -d -r1.390 -r1.391
--- NEWS 29 Aug 2003 17:59:08 -0000 1.390
+++ NEWS 1 Sep 2003 10:41:24 -0000 1.391
@@ -2011,6 +2011,8 @@
* bug fix: effective methods associated with a generic function are
no longer cached over a change of that generic function's method
combination. (reported by Andreas Fuchs)
+ * bug fix: RUN-PROGRAM now does not fail if some element in $PATH
+ names a non-existent directory. (thanks to Andreas Fuchs)
* optimization: restored some effective method precomputation in
CLOS (turned off by an ANSI fix in sbcl-0.8.3); the amount of
precomputation is now tunable.
Index: binary-distribution.sh
===================================================================
RCS file: /cvsroot/sbcl/sbcl/binary-distribution.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- binary-distribution.sh 31 May 2003 20:56:03 -0000 1.8
+++ binary-distribution.sh 1 Sep 2003 10:41:24 -0000 1.9
@@ -13,7 +13,7 @@
tar -cf $b-binary.tar \
$b/output/sbcl.core $b/src/runtime/sbcl \
$b/BUGS $b/COPYING $b/CREDITS $b/INSTALL $b/NEWS $b/README \
- $b/install.sh \
+ $b/install.sh $b/find-gnumake.sh \
$b/doc/sbcl.1 \
$b/pubring.pgp \
$b/contrib/asdf-module.mk \
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.1202
retrieving revision 1.1203
diff -u -d -r1.1202 -r1.1203
--- version.lisp-expr 1 Sep 2003 07:55:42 -0000 1.1202
+++ version.lisp-expr 1 Sep 2003 10:41:24 -0000 1.1203
@@ -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.3.17"
+"0.8.3.18"
|