1.0.41.56: Fix for asdf-install (launchpad bug #612998)
authorChristophe Rhodes <csr21@cantab.net>
Tue, 24 Aug 2010 16:27:02 +0000 (16:27 +0000)
committerChristophe Rhodes <csr21@cantab.net>
Tue, 24 Aug 2010 16:27:02 +0000 (16:27 +0000)
Reported by Phil Hargett; patch by Jim Wise from Phil's description

NEWS
contrib/asdf-install/installer.lisp
version.lisp-expr

diff --git a/NEWS b/NEWS
index 9ddaaeb..52c80e4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -16,6 +16,8 @@ changes relative to sbcl-1.0.41
     argument is a floating point zero. (lp#571581, thanks to Roman Marynchak)
   * bug fix: DEFTYPE signals an error for non-list lambda-lists.
     (lp#576594, thanks to Roman Marynchak)
+  * bug fix: make ASDF-INSTALL compatible with the now-included ASDF2.
+    (lp#612998, reported by Phil Hargett; patch from Jim Wise)
 
 changes in sbcl-1.0.41 relative to sbcl-1.0.40:
   * optimization: validity of observed keyword initargs to MAKE-INSTANCE is
index 7aaf04d..5d76644 100644 (file)
     (loop for l = (read-line (process-output proc) nil nil)
           while l
           when (> (mismatch l "[GNUPG:]") 6)
-          do (destructuring-bind (_ tag &rest data) (asdf::split l)
+          do (destructuring-bind (_ tag &rest data) (asdf::split-string l)
                (declare (ignore _))
                (pushnew (cons (intern tag :keyword)
                               data) tags)))
index 7d634e0..b36064c 100644 (file)
@@ -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".)
-"1.0.41.55"
+"1.0.41.56"