aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-11-03 15:44:51 -0700
committerCharlie Sharpsteen2012-11-03 15:44:51 -0700
commit6e29cdc24e7b4a4c6234e3b05be05e854fe8a46e (patch)
tree463dbec193287487e7a33c94c5854663781374a8 /Library/Homebrew
parent5f0d424ff66f625a58d820ff05e15e599894e5dd (diff)
downloadhomebrew-6e29cdc24e7b4a4c6234e3b05be05e854fe8a46e.tar.bz2
doctor: Remove fuse.pc from the whitelist
Having a third-party `fuse.pc` file will conflict with the `fuse4x` formula.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/doctor.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 1a1a6ee72..2134de3d3 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?