summaryrefslogtreecommitdiff
path: root/tools/regression/process_jam_log.cpp
diff options
context:
space:
mode:
authorMarkus Schöpflin <markus.schoepflin@comsoft.de>2005-05-11 09:51:11 +0000
committerMarkus Schöpflin <markus.schoepflin@comsoft.de>2005-05-11 09:51:11 +0000
commit530b7ffc8da7221f32d8d9e9c0f8e911f5935d61 (patch)
tree28ed41e1bf2dc7580a7523ccf06143144e16bd3a /tools/regression/process_jam_log.cpp
parentd81410e694f0570c8eed65335cd25f79125a2aca (diff)
downloadboost-530b7ffc8da7221f32d8d9e9c0f8e911f5935d61.tar.gz
Fixed nasty bug which caused actions to be reported as link instead of compile actions.
[SVN r28813]
Diffstat (limited to 'tools/regression/process_jam_log.cpp')
-rw-r--r--tools/regression/process_jam_log.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/regression/process_jam_log.cpp b/tools/regression/process_jam_log.cpp
index da523de7a4..b63a2256ff 100644
--- a/tools/regression/process_jam_log.cpp
+++ b/tools/regression/process_jam_log.cpp
@@ -612,7 +612,7 @@ int cpp_main( int argc, char ** argv )
string action( ( line.find( "Link-action " ) != string::npos
|| line.find( "vc-Link " ) != string::npos
|| line.find( ".link") != string::npos
- || line.find( "Archive-action "))
+ || line.find( "Archive-action ") != string::npos )
? "link" : "compile" );
if ( line.find( "...failed " ) != string::npos )
mgr.stop_message( action, target_directory( line ),