$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r51240 - trunk/tools/build/v2/build
From: steven_at_[hidden]
Date: 2009-02-13 11:55:07
Author: steven_watanabe
Date: 2009-02-13 11:55:07 EST (Fri, 13 Feb 2009)
New Revision: 51240
URL: http://svn.boost.org/trac/boost/changeset/51240
Log:
Use $(type) instead of type.  Fixes #2648
Text files modified: 
   trunk/tools/build/v2/build/type.jam |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/build/type.jam
==============================================================================
--- trunk/tools/build/v2/build/type.jam	(original)
+++ trunk/tools/build/v2/build/type.jam	2009-02-13 11:55:07 EST (Fri, 13 Feb 2009)
@@ -117,7 +117,7 @@
         {
             .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)" ;