From 19ebfec10c5e7a886a7d8490514086be0c6cb43a Mon Sep 17 00:00:00 2001 From: Daniel Barlow <> Date: Mon, 20 May 2002 12:03:43 +0000 Subject: [PATCH] Component names in dependencies need to be coerced to canonical strings before the dependency is looked for This patch does the coercion at lookup time even though it would be better done earlier, because the in-order-to syntax is insanely complicated. In a future version we may lose and/or dependencies; it's not as if anyone understands them anyway --- asdf.lisp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/asdf.lisp b/asdf.lisp index ea289eb4..40b768c6 100644 --- a/asdf.lisp +++ b/asdf.lisp @@ -416,7 +416,11 @@ system.")) operation (make-sub-operation operation required-op))) (dep-c (or (find-component - (component-parent c) required-c required-v) + (component-parent c) + ;; XXX tacky. really we should build the + ;; in-order-to slot with canonicalized + ;; names instead of coercing this late + (coerce-name required-c) required-v) (error 'missing-dependency :required-by c :version required-v :requires required-c)))) -- GitLab