X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=blobdiff_plain;f=base64.asd;h=1f0bc03fb5e915d9a873368d5a26952185d36d93;hp=61be9f6f5b7caf73449f5a8fec6eb9a9efa80acd;hb=3142c5d36a39992ae73c022721838ae1bf81b033;hpb=b43849d2f3919edad320c8549ab5892ee55e2b5f diff --git a/base64.asd b/base64.asd index 61be9f6..1f0bc03 100644 --- a/base64.asd +++ b/base64.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: base64.asd,v 1.6 2003/04/15 15:37:44 kevin Exp $ +;;;; $Id: base64.asd,v 1.9 2003/04/15 15:51:03 kevin Exp $ ;;;; ************************************************************************* (in-package :asdf) @@ -28,7 +28,8 @@ :perform (load-op :after (op base64) (pushnew :base64 cl:*features*)) - :depends-on (:kmrcl) ;; only for test-op + ;; depends-on only needed for test-op + :depends-on (:kmrcl :tester) :components ((:file "package") @@ -37,5 +38,5 @@ )) (defmethod perform ((o test-op) (c (eql (find-system :base64)))) - (or (load (compile-file "base64-tests.lisp")) - (error "test-op failed"))) + (or (load "base64-tests.lisp") + (error "test-op failed")))