Re: [lisp-snmp] SNMP asdf package
Brought to you by:
binghe
From: Chun T. (binghe) <bin...@gm...> - 2008-08-11 05:09:43
|
Hi, David This is a trivial bug when using sbcl + asdf-install, you just need to change snmp.asd a little: Index: snmp.asd =================================================================== --- snmp.asd (revision 441) +++ snmp.asd (working copy) @@ -29,7 +29,7 @@ (s (let ((file (merge-pathnames (make-pathname :name "mib" :type "lisp-expr") - *load-pathname*))) + *load-truename*))) (format t ";; Load MIB list from ~A~%" file) file) :direction :input) (let ((mibs (read s))) Regards, Chun Tian (binghe) 在 2008-8-11,下午12:13, David Leimbach 写道: > Hi, > > I'm trying to install the asdf package cl-net-snmp, and it's failing > with: > > debugger invoked on a SB-INT:SIMPLE-FILE-ERROR: > error opening #P"/usr/local/lib/sbcl/site-systems/mib.lisp-expr": > No such file or directory > > > I tried to just "touch" this file, but it's not liking it being > empty either. Is there something I forgot to do or is the package > just a bit buggy for systems that don't have this file? > > Dave |