Browse Source

recognize '.dylib' files as libraries

[SVN r26825]
Aleksey Gurtovoy 21 years ago
parent
commit
657c2010f0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tools/regression/process_jam_log.cpp

+ 1 - 0
tools/regression/process_jam_log.cpp

@@ -251,6 +251,7 @@ namespace
         if ( target_directory.find( ".lib/" ) != string::npos
           || target_directory.find( ".dll/" ) != string::npos 
           || target_directory.find( ".so/" ) != string::npos 
+          || target_directory.find( ".dylib/" ) != string::npos 
           )
         {
           info.type = "lib";

粤ICP备19079148号