Skip to content
Snippets Groups Projects
Commit a1c1c1e3 authored by Jack Nagel's avatar Jack Nagel
Browse files

Whitelist ntfs-3g libs

Closes Homebrew/homebrew#40950.
parent 22269b70
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment