From 1b9601f79d896b26332c8fe7c5608536b00a63cd Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Fri, 13 Feb 2009 16:55:07 +0000 Subject: [PATCH] Use $(type) instead of type. Fixes #2648 [SVN r51240] --- src/build/type.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/type.jam b/src/build/type.jam index fdd9acc8f..1a7a57823 100644 --- a/src/build/type.jam +++ b/src/build/type.jam @@ -117,7 +117,7 @@ rule register-suffixes ( suffixes + : type ) { .type.$(s) = $(type) ; } - else if $(.type.$(s)) != type + else if $(.type.$(s)) != $(type) { errors.error Attempting to specify multiple types for suffix \"$(s)\" : "Old type $(.type.$(s)), New type $(type)" ;