$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r48599 - trunk/tools/build/v2/build
From: jurko.gospodnetic_at_[hidden]
Date: 2008-09-04 22:37:54
Author: jurko
Date: 2008-09-04 22:37:54 EDT (Thu, 04 Sep 2008)
New Revision: 48599
URL: http://svn.boost.org/trac/boost/changeset/48599
Log:
Minor stylistic changes made to the Boost Build build/generators.jam module.
Text files modified: 
   trunk/tools/build/v2/build/generators.jam |    18 +++++++++---------                      
   1 files changed, 9 insertions(+), 9 deletions(-)
Modified: trunk/tools/build/v2/build/generators.jam
==============================================================================
--- trunk/tools/build/v2/build/generators.jam	(original)
+++ trunk/tools/build/v2/build/generators.jam	2008-09-04 22:37:54 EDT (Thu, 04 Sep 2008)
@@ -67,29 +67,29 @@
 {
     local generators-with-cached-source-types = $(.vstg-cached-generators) ;
     .vstg-cached-generators = ;
-    for local gen in $(generators-with-cached-source-types)
+    for local g in $(generators-with-cached-source-types)
     {
-        if $(.vstg.$(gen)) = *
+        if $(.vstg.$(g)) = *
         {
-            .vstg-cached-generators += $(gen) ;
+            .vstg-cached-generators += $(g) ;
         }
         else
         {
-            .vstg.$(gen) = ;
+            .vstg.$(g) = ;
         }
     }
 
     local types-with-cached-source-types = $(.vst-cached-types) ;
     .vst-cached-types = ;
-    for local type in $(types-with-cached-source-types)
+    for local t in $(types-with-cached-source-types)
     {
-        if $(.vst.$(type)) = *
+        if $(.vst.$(t)) = *
         {
-            .vst-cached-types += $(type) ;
+            .vst-cached-types += $(t) ;
         }
         else
         {
-            .vst.$(type) = ;
+            .vst.$(t) = ;
         }
     }
 }
@@ -1046,7 +1046,7 @@
 # Returns generators which can be used to construct target of specified type
 # with specified properties. Uses the following algorithm:
 # - iterates over requested target-type and all its bases (in the order returned
-#   by type.all-bases.
+#   by type.all-bases).
 # - for each type find all generators that generate that type and whose
 #   requirements are satisfied by properties.
 # - if the set of generators is not empty, returns that set.