X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-rotate-byte%2Fsb-rotate-byte.asd;h=036f1ba484880e324afd98be87f09d8081557f22;hb=de3bfc084239fa962ef001eaa68e5b6f4b9bbf81;hp=8cf6d4730e187d638626b46a0d198c9a707af332;hpb=abc6bed30fe634a0542d5a1424481447ba18386c;p=sbcl.git diff --git a/contrib/sb-rotate-byte/sb-rotate-byte.asd b/contrib/sb-rotate-byte/sb-rotate-byte.asd index 8cf6d47..036f1ba 100644 --- a/contrib/sb-rotate-byte/sb-rotate-byte.asd +++ b/contrib/sb-rotate-byte/sb-rotate-byte.asd @@ -7,23 +7,22 @@ (defsystem sb-rotate-byte :version "0.1" #+sb-building-contrib :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" :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 "x86-64-vm" - :in-order-to ((compile-op (feature :x86-64)))) - (:file "ppc-vm" - :in-order-to ((compile-op (feature :ppc))))) + (#+x86 + (:file "x86-vm") + #+x86-64 + (:file "x86-64-vm") + #+ppc + (:file "ppc-vm")) :pathname - #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" - #-sb-building-contrib #.(make-pathname :directory '(:relative)) - :if-component-dep-fails :ignore) + #+sb-building-contrib #p"SYS:CONTRIB;SB-ROTATE-BYTE;" + #-sb-building-contrib #.(make-pathname :directory '(:relative))) (:file "rotate-byte" :depends-on ("compiler")))) (defmethod perform :after ((o load-op) (c (eql (find-system :sb-rotate-byte))))