Skip to content

Commit

Permalink
sb-rotate-byte: Don't use :if-component-dep-fails.
Browse files Browse the repository at this point in the history
Newer ASDF doesn't support it anymore.
  • Loading branch information
stassats committed Dec 17, 2012
1 parent 9644b3b commit fe6da9f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions contrib/sb-rotate-byte/sb-rotate-byte.asd
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@
(: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))))
Expand Down

0 comments on commit fe6da9f

Please sign in to comment.