Boost logo

Boost-Commit :

From: jurko.gospodnetic_at_[hidden]
Date: 2008-08-28 20:16:40


Author: jurko
Date: 2008-08-28 20:16:40 EDT (Thu, 28 Aug 2008)
New Revision: 48431
URL: http://svn.boost.org/trac/boost/changeset/48431

Log:
Updated Boost Jam with minor stylistic changes in end-user messages when reporting on target fate. Fixed a bug with T_FATE_ISTMP getting reported as T_FATE_ISTMP & T_FATE_NEEDTMP at the same time due to a missing break in a switch statement.
Text files modified:
   trunk/tools/jam/src/make.c | 11 ++++++-----
   1 files changed, 6 insertions(+), 5 deletions(-)

Modified: trunk/tools/jam/src/make.c
==============================================================================
--- trunk/tools/jam/src/make.c (original)
+++ trunk/tools/jam/src/make.c 2008-08-28 20:16:40 EDT (Thu, 28 Aug 2008)
@@ -736,11 +736,12 @@
         break;
       case T_FATE_ISTMP:
         printf( " %s : Up to date temp file\n", spaces(depth) );
+ break;
       case T_FATE_NEEDTMP:
- printf( " %s : Temporary file, to be updated\n", spaces(depth) );
+ printf( " %s : Temporary file, to be updated\n", spaces(depth) );
         break;
       case T_FATE_TOUCHED:
- printf( " %s : Been touched, updating it\n", spaces(depth) );
+ printf( " %s : Been touched, updating it\n", spaces(depth) );
         break;
       case T_FATE_MISSING:
         printf( " %s : Missing, creating it\n", spaces(depth) );
@@ -749,16 +750,16 @@
         printf( " %s : Outdated, updating it\n", spaces(depth) );
         break;
       case T_FATE_REBUILD:
- printf( " %s : Rebuild, Updating it\n", spaces(depth) );
+ printf( " %s : Rebuild, updating it\n", spaces(depth) );
         break;
       case T_FATE_UPDATE:
         printf( " %s : Updating it\n", spaces(depth) );
         break;
       case T_FATE_CANTFIND:
- printf( " %s : Can't find it\n", spaces(depth) );
+ printf( " %s : Can not find it\n", spaces(depth) );
         break;
       case T_FATE_CANTMAKE:
- printf( " %s : Can't make it\n", spaces(depth) );
+ printf( " %s : Can not make it\n", spaces(depth) );
         break;
     }
 


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