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=a445c1fb8978c037ed0764595f4754be9ef960a6;hb=6ffb09605de7f990332aee146d8f69ba4cc907c9;hp=a5d7a727d021de08a13d762237d485ed075e9596;hpb=b5a771e7bcebe95f897a08313941b299ce9c16df;p=sbcl.git diff --git a/contrib/sb-rotate-byte/sb-rotate-byte.asd b/contrib/sb-rotate-byte/sb-rotate-byte.asd index a5d7a72..a445c1f 100644 --- a/contrib/sb-rotate-byte/sb-rotate-byte.asd +++ b/contrib/sb-rotate-byte/sb-rotate-byte.asd @@ -6,6 +6,8 @@ (defsystem sb-rotate-byte :version "0.1" + #+sb-building-contrib :pathname + #+sb-building-contrib "SYS:CONTRIB;SB-ROTATE-BYTE;" :components ((:file "package") (:file "compiler" :depends-on ("package")) @@ -16,7 +18,9 @@ :in-order-to ((compile-op (feature :x86)))) (:file "ppc-vm" :in-order-to ((compile-op (feature :ppc))))) - :pathname #.(make-pathname :directory '(:relative)) + :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"))))