Changeset 13432
- Timestamp:
- 08/01/11 21:34:43 (12 years ago)
- Location:
- trunk/abcl/contrib/abcl-asdf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
r13431 r13432 4 4 (defsystem :abcl-asdf 5 5 :author "Mark Evenson" 6 :version "0.3. 1"6 :version "0.3.2" 7 7 :depends-on ("jss") 8 8 :components -
trunk/abcl/contrib/abcl-asdf/asdf-jar.lisp
r13431 r13432 27 27 (return-from need-to-add-directory-jar? t))) 28 28 nil) 29 30 (defmethod java:add-to-classpath :around ((uri-or-uris t) &optional classloader) 31 (declare (ignore classloader)) 32 (call-next-method) 33 (if (listp uri-or-uris) 34 (dolist (uri uri-or-uris) 35 (pushnew uri *added-to-classpath*)) 36 (pushnew uri-or-uris *added-to-classpath*))) 29 37 30 38 (in-package :asdf)
Note: See TracChangeset
for help on using the changeset viewer.