diff options
author | Markus Schöpflin <markus.schoepflin@comsoft.de> | 2005-05-11 09:51:11 +0000 |
---|---|---|
committer | Markus Schöpflin <markus.schoepflin@comsoft.de> | 2005-05-11 09:51:11 +0000 |
commit | 530b7ffc8da7221f32d8d9e9c0f8e911f5935d61 (patch) | |
tree | 28ed41e1bf2dc7580a7523ccf06143144e16bd3a /tools/regression/process_jam_log.cpp | |
parent | d81410e694f0570c8eed65335cd25f79125a2aca (diff) | |
download | boost-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.cpp | 2 |
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 ), |