Narrowing down the problem, TRAVERSE now adds the LIB-OP operation to all
components of a system. I added a method

(defmethod perform ((operation lib-op) (c component))
  nil)

but this method gets overriden by a more specific one which is provided by
asdf.lisp

(defmethod perform ((operation operation) (c source-file))
  (sysdef-error
   "~@<required method PERFORM not implemented ~
    for operation ~A, component ~A~@:>"
   (class-of operation) (class-of c)))

This method was the cause of all problems.

Juanjo

-- 
Instituto de Física Fundamental, CSIC
c/ Serrano, 113b, Madrid 28006 (Spain)
http://tream.dreamhosters.com
_______________________________________________
asdf-devel mailing list
[email protected]
http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel

Reply via email to