aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-09-19 23:20:12 -0500
committerJack Nagel2014-09-19 23:20:12 -0500
commit2dfc8c83522f04e52b34953d6635a6bd0650fadd (patch)
tree50cfa7ac1c3c2696eb309f00beeba2b1ee49df89 /Library
parentd6bceebeca1fa87654d743a384347ff7286fd206 (diff)
downloadbrew-2dfc8c83522f04e52b34953d6635a6bd0650fadd.tar.bz2
Whitelist oxsfuse files since we support externally installed oxsfuse
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb10
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