Преглед изворни кода

Fixed nasty bug which caused actions to be reported as link instead of compile actions.

[SVN r28813]
Markus Schöpflin пре 21 година
родитељ
комит
530b7ffc8d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      tools/regression/process_jam_log.cpp

+ 1 - 1
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 ),

粤ICP备19079148号