Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r80253 - trunk/tools/build/v2/engine
From: jurko.gospodnetic_at_[hidden]
Date: 2012-08-27 06:26:36


Author: jurko
Date: 2012-08-27 06:26:35 EDT (Mon, 27 Aug 2012)
New Revision: 80253
URL: http://svn.boost.org/trac/boost/changeset/80253

Log:
Corrected a '&& within ||' gcc warning displayed when building Boost Jam's make1.c module.
Text files modified:
   trunk/tools/build/v2/engine/make1.c | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/tools/build/v2/engine/make1.c
==============================================================================
--- trunk/tools/build/v2/engine/make1.c (original)
+++ trunk/tools/build/v2/engine/make1.c 2012-08-27 06:26:35 EDT (Mon, 27 Aug 2012)
@@ -882,7 +882,7 @@
      * commands if we were asked to stop the build in case of any errors.
      */
     if ( t->status == EXEC_CMD_INTR ||
- t->status == EXEC_CMD_FAIL && globs.quitquick )
+ ( t->status == EXEC_CMD_FAIL && globs.quitquick ) )
         ++intr;
 
     /* If the command was not successful remove all of its targets not marked as


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