Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-08-23 20:59:05


Author: jurko
Date: 2008-08-23 20:59:05 EDT (Sat, 23 Aug 2008)
New Revision: 48338
URL: http://svn.boost.org/trac/boost/changeset/48338

Log:
Corrected a syntax error committed in the last revision in the tools/common.jam Boost Build module.
Text files modified:
   trunk/tools/build/v2/tools/common.jam | 4 ++--
   1 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/tools/build/v2/tools/common.jam
==============================================================================
--- trunk/tools/build/v2/tools/common.jam (original)
+++ trunk/tools/build/v2/tools/common.jam 2008-08-23 20:59:05 EDT (Sat, 23 Aug 2008)
@@ -265,7 +265,7 @@
     local command ;
     if ! $(user-provided-command)
     {
- command = [ common.find-tool $(tool) : $(additional-paths) : $(path-last) ] ;
+ command = [ find-tool $(tool) : $(additional-paths) : $(path-last) ] ;
         if ! $(command) && $(.debug-configuration)
         {
             ECHO "warning: toolset $(toolset) initialization: can not find tool $(tool)" ;
@@ -274,7 +274,7 @@
     }
     else
     {
- command = [ common.check-tool $(user-provided-command) ] ;
+ command = [ check-tool $(user-provided-command) ] ;
         if ! $(command) && $(.debug-configuration)
         {
             ECHO "warning: toolset $(toolset) initialization: " ;


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