X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-rotate-byte%2Fsb-rotate-byte.asd;fp=contrib%2Fsb-rotate-byte%2Fsb-rotate-byte.asd;h=40ae7dde82827973b213e19d44a24b020d17ccdb;hb=bf25f936158ea89a142d86a0f0216a8bed029dc5;hp=a445c1fb8978c037ed0764595f4754be9ef960a6;hpb=3d446163adb5602f4cf4743fb7f97ad187a6b2c0;p=sbcl.git diff --git a/contrib/sb-rotate-byte/sb-rotate-byte.asd b/contrib/sb-rotate-byte/sb-rotate-byte.asd index a445c1f..40ae7dd 100644 --- a/contrib/sb-rotate-byte/sb-rotate-byte.asd +++ b/contrib/sb-rotate-byte/sb-rotate-byte.asd @@ -1,6 +1,6 @@ ;;; -*- Lisp -*- -(cl:defpackage #:sb-rotate-byte-system +(cl:defpackage #:sb-rotate-byte-system (:use #:asdf #:cl)) (cl:in-package #:sb-rotate-byte-system) @@ -8,20 +8,20 @@ :version "0.1" #+sb-building-contrib :pathname #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" - :components + :components ((:file "package") (:file "compiler" :depends-on ("package")) (:module "vm" - :depends-on ("compiler") - :components - ((:file "x86-vm" - :in-order-to ((compile-op (feature :x86)))) - (:file "ppc-vm" - :in-order-to ((compile-op (feature :ppc))))) - :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" - #-sb-building-contrib #.(make-pathname :directory '(:relative)) - :if-component-dep-fails :ignore) + :depends-on ("compiler") + :components + ((:file "x86-vm" + :in-order-to ((compile-op (feature :x86)))) + (:file "ppc-vm" + :in-order-to ((compile-op (feature :ppc))))) + :pathname + #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" + #-sb-building-contrib #.(make-pathname :directory '(:relative)) + :if-component-dep-fails :ignore) (:file "rotate-byte" :depends-on ("compiler")))) (defmethod perform :after ((o load-op) (c (eql (find-system :sb-rotate-byte))))