Sfoglia il codice sorgente

track .run -> .pyd dependecies

[SVN r29820]
Aleksey Gurtovoy 21 anni fa
parent
commit
e71e52a7b7
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. 2 3
      tools/regression/process_jam_log.cpp

+ 2 - 3
tools/regression/process_jam_log.cpp

@@ -682,10 +682,9 @@ int cpp_main( int argc, char ** argv )
       content.clear();
       capture_lines = false;
 
-      if ( line.find( " for lack of " ) != string::npos
-        && line.find( ".run for lack of " ) == string::npos )
+      if ( line.find( " for lack of " ) != string::npos )
       {
-        capture_lines = true;
+        capture_lines = ( line.find( ".run for lack of " ) == string::npos );
 
         string target_dir;
         string lib_dir;

粤ICP备19079148号