X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-cltl2%2Fsb-cltl2.asd;h=5e2a5ecba8ed6fbeca9424117d3df8669bbd1b7d;hb=3db292921fabecad0ba8107097d763ba2a044136;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..5e2a5ec 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 #p"SYS:CONTRIB;SB-CLTL2;" :components ((:file "defpackage") - (:file "compiler-let" :depends-on ("defpackage")) - (:file "macroexpand" :depends-on ("defpackage")))) + (:file "compiler-let" :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))