0.8.6.5
[sbcl.git] / contrib / asdf-install / asdf-install.asd
index cdcec0a..91e7282 100644 (file)
@@ -8,10 +8,9 @@
 
 ;;; this is appalling misuse of asdf.  please don't treat it as any
 ;;; kind of example.  this shouldn't be a compile-op, or if it is, should
-;;; define output-files properly instead oif leaving it be the fasl
+;;; define output-files properly instead of leaving it be the fasl
 (defclass exe-file (cl-source-file) ())
-(defmethod perform ((o compile-op) (c exe-file))
-  (call-next-method)
+(defmethod perform :after ((o compile-op) (c exe-file))
   (sb-executable:make-executable
    (make-pathname :name "asdf-install"
                  :type nil
 (defsystem asdf-install
   :depends-on (sb-posix sb-bsd-sockets)
   :version "0.2"
+  #+sb-building-contrib :pathname
+  #+sb-building-contrib "SYS:CONTRIB;ASDF-INSTALL;"
   :components ((:file "defpackage")
-              (exe-file "loader")
-              (:file "installer")))
+              (:exe-file "loader" :depends-on ("installer"))
+              (:file "installer" :depends-on ("defpackage"))))
               
 (defmethod perform :after ((o load-op) (c (eql (find-system :asdf-install))))
   (provide 'asdf-install))