Subject: Re: Cells under Lispworks
From: rpw3@rpw3.org (Rob Warnock)
Date: Fri, 04 Nov 2005 22:25:34 -0600
Newsgroups: comp.lang.lisp
Message-ID: <LcmdnWtaid-jqfHenZ2dnUVZ_tednZ2d@speakeasy.net>
In article <1131149376.609420.150950@g47g2000cwa.googlegroups.com>,
+---------------
| ASDF 9 > (push "~/lisp/cells_2.0" asdf:*central-registry*)
| ("~/lisp/cells_2.0" *DEFAULT-PATHNAME-DEFAULTS*)
| ASDF 11 : 1 > (asdf:oos 'asdf:load-op :cells)
| Error: component "cells" not found  ...
+---------------

Are you sure that ASDF under Lispworks understands "~/" in
pathname strings? Try (TRUENAME "~/lisp/cells_2.0") and see
what that gives you, and PUSH *that* instead. And if TRUENAME
fails, try (TRUENAME "home:lisp/cells_2.0") [or whatever logical
device Lispworks uses for "$HOME"].

If that fails, try a fully-specified absolute namestring; then
[as Kenny suggested] a pathname...


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607