diff options
| author | Adam Vandenberg | 2012-04-11 19:30:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-11 19:30:24 -0700 |
| commit | 9d0d45db58eaa9724d2e4f3bebc43530719f4034 (patch) | |
| tree | 0c37a3219767275afd518e7c729f82d8f3436deb | |
| parent | 351fe3d5fc434f72b6da56970429f5d98a4b36b3 (diff) | |
| download | homebrew-9d0d45db58eaa9724d2e4f3bebc43530719f4034.tar.bz2 | |
Don't warn about .o files in lib
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 266f518df..5efc22c10 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -327,7 +327,7 @@ class FormulaInstaller def check_non_libraries return unless File.exist? f.lib - valid_libraries = %w(.a .dylib .framework .la .so) + valid_libraries = %w(.a .dylib .framework .la .o .so) non_libraries = f.lib.children.select do |g| next if g.directory? extname = g.extname |
