From 6a1dc9e0f545fbb335a04eb2b5ced57ffecefea8 Mon Sep 17 00:00:00 2001 From: Robert Kawulak Date: Sat, 20 Jul 2013 20:29:39 +0000 Subject: [PATCH] [regression] Fixed random warnings in test results when b2 parallel processing is enabled. [SVN r85096] --- src/process_jam_log.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/process_jam_log.cpp b/src/process_jam_log.cpp index 532561e..3a6cc0e 100644 --- a/src/process_jam_log.cpp +++ b/src/process_jam_log.cpp @@ -836,7 +836,8 @@ int main( int argc, char ** argv ) // these actions are only used to stop the previous action else if ( line_start.find( "-Archive" ) != string::npos || line_start.find( "MkDir" ) == 0 - || line_start.find( "common.mkdir" ) == 0 ) + || line_start.find( "common.mkdir" ) == 0 + || line_start.find( ".manifest" ) != string::npos ) { mgr.stop_message( content ); content.clear();