From c92971f475272109153889b6ada0ed0603eb60d4 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Sat, 3 Nov 2012 15:44:51 -0700 Subject: [PATCH] doctor: Remove fuse.pc from the whitelist Having a third-party `fuse.pc` file will conflict with the `fuse4x` formula. --- Library/Homebrew/cmd/doctor.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index 1a1a6ee721..2134de3d3d 100644 --- a/Library/Homebrew/cmd/doctor.rb +++ b/Library/Homebrew/cmd/doctor.rb @@ -136,9 +136,7 @@ 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 = { - "fuse.pc" => "MacFuse", - } + white_list = { } bad_pcs = unbrewed_pcs.reject {|d| white_list.key? File.basename(d) } return if bad_pcs.empty?