From 2dfc8c83522f04e52b34953d6635a6bd0650fadd Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 19 Sep 2014 23:20:12 -0500 Subject: [PATCH] Whitelist oxsfuse files since we support externally installed oxsfuse --- Library/Homebrew/cmd/doctor.rb | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 1dbe401919..ca56360d8f 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