[asdf-devel] [PATCH 1/2] Fix error in parsing configuration directives
Stelian Ionescu
sionescu at cddr.org
Mon Jun 7 04:33:09 UTC 2010
Signed-off-by: Stelian Ionescu <sionescu at cddr.org>
---
asdf.lisp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/asdf.lisp b/asdf.lisp
index 859d93c..0b4ba6c 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -2508,8 +2508,8 @@ located."
(incf inherit)
(funcall directive-validator directive))
:finally
- (unless (= inherit 1)
- (error "One and only one of ~S or ~S is required"
+ (unless (<= inherit 1)
+ (error "At most one of ~S or ~S is allowed"
:inherit-configuration :ignore-inherited-configuration)))
form)
--
1.7.1
More information about the asdf-devel
mailing list