[asdf-devel] LispWorks fix
![](https://secure.gravatar.com/avatar/df0948a96b734321ce500701a3261bce.jpg?s=120&d=mm&r=g)
Hi, ASDF I found a typo in LispWorks support code which stops ASDF compiling: diff --git a/asdf.lisp b/asdf.lisp index 3c5dbbd..ad97554 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -438,7 +438,7 @@ and NIL NAME and TYPE components" ;;; what about VERSION??? #+cmu (cdr (assoc (intern x :keyword) ext:*environment-list*)) #+lispworks - (lispworks:environment-xiable x) + (lispworks:environment-variable x) #+allegro (sys:getenv x) #+gcl Please fix it. --binghe
![](https://secure.gravatar.com/avatar/0345f6261d6ced21145afdec166fd114.jpg?s=120&d=mm&r=g)
Committed as ASDF 1.601. Thanks! [ François-René ÐVB Rideau | Reflection&Cybernethics | http://fare.tunes.org ] There are two distinct classes of men in the Nation, those who pay taxes and those who receive and live upon the taxes. — Thomas Paine On 4 February 2010 01:36, Chun Tian (binghe) <binghe.lisp@gmail.com> wrote:
Hi, ASDF
I found a typo in LispWorks support code which stops ASDF compiling:
diff --git a/asdf.lisp b/asdf.lisp index 3c5dbbd..ad97554 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -438,7 +438,7 @@ and NIL NAME and TYPE components" ;;; what about VERSION??? #+cmu (cdr (assoc (intern x :keyword) ext:*environment-list*)) #+lispworks - (lispworks:environment-xiable x) + (lispworks:environment-variable x) #+allegro (sys:getenv x) #+gcl
Please fix it.
--binghe
_______________________________________________ asdf-devel mailing list asdf-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
participants (2)
-
Chun Tian (binghe)
-
Faré