sb-rotate-byte: Don't use :if-component-dep-fails.
authorStas Boukarev <stassats@gmail.com>
Mon, 17 Dec 2012 19:07:22 +0000 (23:07 +0400)
committerStas Boukarev <stassats@gmail.com>
Mon, 17 Dec 2012 19:08:28 +0000 (23:08 +0400)
Newer ASDF doesn't support it anymore.

contrib/sb-rotate-byte/sb-rotate-byte.asd

index 908392d..036f1ba 100644 (file)
    (: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 #p"SYS:CONTRIB;SB-ROTATE-BYTE;"
-            #-sb-building-contrib #.(make-pathname :directory '(:relative))
-            :if-component-dep-fails :ignore)
+            #-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))))