diff options
| author | Adam Vandenberg | 2012-04-11 19:30:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-04-11 19:30:24 -0700 |
| commit | f09e0c8e1e79752df95407a28bc6f1addddf5f82 (patch) | |
| tree | 448301f8b961a048b2a4d99c956c581987c3a2d9 /Library/Homebrew | |
| parent | 801d8b2bfd544eb32a3d67104536bb5e34230059 (diff) | |
| download | brew-f09e0c8e1e79752df95407a28bc6f1addddf5f82.tar.bz2 | |
Don't warn about .o files in lib
Diffstat (limited to 'Library/Homebrew')
| -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 |
