From e36eb23a3c1f36232b2ae95dbc612e43f3ac8e23 Mon Sep 17 00:00:00 2001 From: dlichteblau Date: Sun, 2 Dec 2007 20:55:11 +0000 Subject: [PATCH] fixed the asdf-install workaround --- cxml.asd | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cxml.asd b/cxml.asd index 2592acf..41942f9 100644 --- a/cxml.asd +++ b/cxml.asd @@ -2,11 +2,16 @@ (:use :asdf :cl)) (in-package :cxml-system) +(defclass dummy-cxml-component () ()) + +(defmethod asdf:component-name ((c dummy-cxml-component)) + :cxml) + ;; force loading of closure-common.asd, which installs *FEATURES* this ;; file depends on. Use MISSING-DEPENDENCY for asdf-install. (unless (find-system :closure-common nil) (error 'missing-dependency - :required-by :cxml + :required-by (make-instance 'dummy-cxml-component) :version nil :requires :closure-common))