X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-cltl2%2Fsb-cltl2.asd;h=3055a8e2800e79bdb61598fb8a9ad79fe8c6b2ec;hb=55e6ffb0b21df99a1908f1c0bc00f0baf4322f92;hp=470e82113b662789c1ea4dab8b09a69c035861e7;hpb=79f9319b412fc6106d65ca435b36548f454b81b9;p=sbcl.git diff --git a/contrib/sb-cltl2/sb-cltl2.asd b/contrib/sb-cltl2/sb-cltl2.asd index 470e821..3055a8e 100644 --- a/contrib/sb-cltl2/sb-cltl2.asd +++ b/contrib/sb-cltl2/sb-cltl2.asd @@ -1,11 +1,16 @@ +;;; -*- Lisp -*- + (defpackage #:sb-cltl2-system (:use #:asdf #:cl)) (in-package #:sb-cltl2-system) (defsystem sb-cltl2 - :description "Some functionality, mentioned in CLtL2, but not present in ANSI." + :description "Functionality mentioned in CLtL2 but not present in ANSI." + #+sb-building-contrib :pathname + #+sb-building-contrib "SYS:CONTRIB;SB-CLTL2;" :components ((:file "defpackage") (:file "compiler-let" :depends-on ("defpackage")) - (:file "macroexpand" :depends-on ("defpackage")))) + (:file "macroexpand" :depends-on ("defpackage")) + (:file "env" :depends-on ("defpackage")))) (defmethod perform :after ((o load-op) (c (eql (find-system :sb-cltl2)))) (provide 'sb-cltl2))