diff options
| author | Jack Nagel | 2014-09-19 23:20:12 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-09-19 23:20:12 -0500 |
| commit | 7964179a516609de976849e7b6a772472a976eb2 (patch) | |
| tree | 16b7dd227e6e852ef1c695d1562a6e4e5777e27f /Library | |
| parent | 77e0cebe0695b56ccf070903552cdb4c5ddb9665 (diff) | |
| download | homebrew-7964179a516609de976849e7b6a772472a976eb2.tar.bz2 | |
Whitelist oxsfuse files since we support externally installed oxsfuse
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/doctor.rb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 1dbe40191..ca56360d8 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -114,7 +114,9 @@ def check_for_stray_dylibs # with a short description of the software they come with. white_list = { "libfuse.2.dylib" => "MacFuse", - "libfuse_ino64.2.dylib" => "MacFuse" + "libfuse_ino64.2.dylib" => "MacFuse", + "libosxfuse_i32.2.dylib" => "OSXFuse", + "libosxfuse_i64.2.dylib" => "OSXFuse", } __check_stray_files '/usr/local/lib/*.dylib', white_list, <<-EOS.undent @@ -146,7 +148,9 @@ end def check_for_stray_pcs # Package-config files which are generally OK should be added to this list, # with a short description of the software they come with. - white_list = {} + white_list = { + "osxfuse.pc" => "OSXFuse", + } __check_stray_files '/usr/local/lib/pkgconfig/*.pc', white_list, <<-EOS.undent Unbrewed .pc files were found in /usr/local/lib/pkgconfig. @@ -161,6 +165,8 @@ def check_for_stray_las white_list = { "libfuse.la" => "MacFuse", "libfuse_ino64.la" => "MacFuse", + "libosxfuse_i32.la" => "OSXFuse", + "libosxfuse_i64.la" => "OSXFuse", } __check_stray_files '/usr/local/lib/*.la', white_list, <<-EOS.undent |
