aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-06-23 23:08:01 -0400
committerJack Nagel2015-06-23 23:20:31 -0400
commita1c1c1e3d34b90ec12457a3cc915537fc9b5e19a (patch)
tree284b15de2bc6061e58649e3cd434bae984e8f9de /Library
parent22269b700765e7e8f1b4fc4f7884802944d5ba62 (diff)
downloadbrew-a1c1c1e3d34b90ec12457a3cc915537fc9b5e19a.tar.bz2
Whitelist ntfs-3g libs
Closes Homebrew/homebrew#40950.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index a0bef5162..9c95c0f7f 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -125,6 +125,9 @@ def check_for_stray_dylibs
"libosxfuse_i32.2.dylib", # OSXFuse
"libosxfuse_i64.2.dylib", # OSXFuse
"libTrAPI.dylib", # TrAPI / Endpoint Security VPN
+ "libntfs-3g.*.dylib", # NTFS-3G
+ "libntfs.*.dylib", # NTFS-3G
+ "libublio.*.dylib", # NTFS-3G
]
__check_stray_files "/usr/local/lib", "*.dylib", white_list, <<-EOS.undent
@@ -142,6 +145,9 @@ def check_for_stray_static_libs
white_list = [
"libsecurity_agent_client.a", # OS X 10.8.2 Supplemental Update
"libsecurity_agent_server.a", # OS X 10.8.2 Supplemental Update
+ "libntfs-3g.a", # NTFS-3G
+ "libntfs.a", # NTFS-3G
+ "libublio.a", # NTFS-3G
]
__check_stray_files "/usr/local/lib", "*.a", white_list, <<-EOS.undent
@@ -160,6 +166,8 @@ def check_for_stray_pcs
"fuse.pc", # OSXFuse/MacFuse
"macfuse.pc", # OSXFuse MacFuse compatibility layer
"osxfuse.pc", # OSXFuse
+ "libntfs-3g.pc", # NTFS-3G
+ "libublio.pc",# NTFS-3G
]
__check_stray_files "/usr/local/lib/pkgconfig", "*.pc", white_list, <<-EOS.undent
@@ -177,6 +185,9 @@ def check_for_stray_las
"libfuse_ino64.la", # MacFuse
"libosxfuse_i32.la", # OSXFuse
"libosxfuse_i64.la", # OSXFuse
+ "libntfs-3g.la", # NTFS-3G
+ "libntfs.la", # NTFS-3G
+ "libublio.la", # NTFS-3G
]
__check_stray_files "/usr/local/lib", "*.la", white_list, <<-EOS.undent
@@ -194,6 +205,8 @@ def check_for_stray_headers
"fuse/**/*.h", # MacFuse
"macfuse/**/*.h", # OSXFuse MacFuse compatibility layer
"osxfuse/**/*.h", # OSXFuse
+ "ntfs/**/*.h", # NTFS-3G
+ "ntfs-3g/**/*.h", # NTFS-3G
]
__check_stray_files "/usr/local/include", "**/*.h", white_list, <<-EOS.undent