Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-06-26 16:41:42


Author: jurko
Date: 2008-06-26 16:41:41 EDT (Thu, 26 Jun 2008)
New Revision: 46748
URL: http://svn.boost.org/trac/boost/changeset/46748

Log:
Minor stylistic Boost Build module changes.
Text files modified:
   trunk/tools/build/v2/build/project.jam | 4 ++--
   trunk/tools/build/v2/tools/stage.jam | 12 ++++++------
   2 files changed, 8 insertions(+), 8 deletions(-)

Modified: trunk/tools/build/v2/build/project.jam
==============================================================================
--- trunk/tools/build/v2/build/project.jam (original)
+++ trunk/tools/build/v2/build/project.jam 2008-06-26 16:41:41 EDT (Thu, 26 Jun 2008)
@@ -955,8 +955,8 @@
     # path is taken to be either absolute, or relative to this project root.
     #
     rule path-constant (
- name # Variable name of the constant.
- : value + # Value of the constant.
+ name # Variable name of the constant.
+ : value + # Value of the constant.
         )
     {
         import project ;

Modified: trunk/tools/build/v2/tools/stage.jam
==============================================================================
--- trunk/tools/build/v2/tools/stage.jam (original)
+++ trunk/tools/build/v2/tools/stage.jam 2008-06-26 16:41:41 EDT (Thu, 26 Jun 2008)
@@ -44,8 +44,8 @@
 
     rule __init__ ( name-and-dir : project : sources * : requirements * : default-build * )
     {
- basic-target.__init__ $(name-and-dir) : $(project) : $(sources) : $(requirements)
- : $(default-build) ;
+ basic-target.__init__ $(name-and-dir) : $(project) : $(sources) :
+ $(requirements) : $(default-build) ;
     }
 
     # If <location> is not set, sets it based on the project data.
@@ -75,8 +75,8 @@
             ps-raw = [ $(ps).raw ] ;
 
             # Unless <hardcode-dll-paths>true is in properties, which can happen
- # only if the user has explicitly requested it, nuke all
- # <dll-path> properties
+ # only if the user has explicitly requested it, nuke all <dll-path>
+ # properties.
             if [ $(property-set).get <hardcode-dll-paths> ] != true
             {
                 ps-raw = [ property.change $(ps-raw) : <dll-path> ] ;
@@ -96,7 +96,7 @@
         # Remove the <tag> feature on original targets.
         ps-raw = [ property.change $(ps-raw) : <tag> ] ;
         # And <location>. If stage target has another stage target in sources,
- # then we'll get virtual targets with <location> property set.
+ # then we shall get virtual targets with <location> property set.
         ps-raw = [ property.change $(ps-raw) : <location> ] ;
 
         local d = [ $(build-property-set).get <dependency> ] ;
@@ -109,7 +109,7 @@
         ps-raw += $(ns:G=<install-no-version-symlinks>) ;
 
         local d = [ $(build-property-set).get <install-source-root> ] ;
- # Make the path absolute: we'll use it to compute relative paths and
+ # Make the path absolute: we shall use it to compute relative paths and
         # making the path absolute will help.
         if $(d)
         {


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk