Skip to content

Commit a0bd077

Browse files
authored
Merge pull request #21650 from gromgit/ignore-fuse-t
diagnostic: ignore FUSE-T files
2 parents 65ded76 + 5855e68 commit a0bd077

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Library/Homebrew/diagnostic.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ def check_for_stray_dylibs
244244
"libfuse.2.dylib", # MacFuse
245245
"libfuse3.*.dylib", # MacFuse
246246
"libfuse_ino64.2.dylib", # MacFuse
247+
"libfuse-t*.dylib", # FUSE-T
247248
"libmacfuse_i32.2.dylib", # OSXFuse MacFuse compatibility layer
248249
"libmacfuse_i64.2.dylib", # OSXFuse MacFuse compatibility layer
249250
"libosxfuse_i32.2.dylib", # OSXFuse
@@ -275,6 +276,7 @@ def check_for_stray_static_libs
275276
# Static libs which are generally OK should be added to this list,
276277
# with a short description of the software they come with.
277278
allow_list = [
279+
"libfuse-t*.a", # FUSE-T
278280
"libntfs-3g.a", # NTFS-3G
279281
"libntfs.a", # NTFS-3G
280282
"libublio.a", # NTFS-3G
@@ -303,6 +305,7 @@ def check_for_stray_pcs
303305
allow_list = [
304306
"fuse.pc", # OSXFuse/MacFuse
305307
"fuse3.pc", # OSXFuse/MacFuse
308+
"fuse-t.pc", # FUSE-T
306309
"macfuse.pc", # OSXFuse MacFuse compatibility layer
307310
"osxfuse.pc", # OSXFuse
308311
"libntfs-3g.pc", # NTFS-3G

0 commit comments

Comments
 (0)