From 79530df421f0763fcb055eda543d9fbc47af215b Mon Sep 17 00:00:00 2001 From: Max Howell Date: Fri, 23 Oct 2009 14:50:41 +0100 Subject: [PATCH] Remove mercurial and scons from the create blacklist Blacklist wxwidgets, it's in /usr/X11/lib. --- Library/Homebrew/brew.h.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Library/Homebrew/brew.h.rb b/Library/Homebrew/brew.h.rb index f02ea87313..144e4683dc 100644 --- a/Library/Homebrew/brew.h.rb +++ b/Library/Homebrew/brew.h.rb @@ -105,7 +105,7 @@ def make url force_text = "If you really want to make this formula use --force." case name.downcase - when /libxml/, /libxlst/, /freetype/, /libpng/ + when /libxml/, /libxlst/, /freetype/, /libpng/, /wxwidgets/ raise <<-EOS #{name} is blacklisted for creation Apple distributes this library with OS X, you can find it in /usr/X11/lib. @@ -114,8 +114,6 @@ ENV.libxml2 in your formula's install function. #{force_text} EOS - when 'mercurial', 'scons' - raise "#{name} is blacklisted for creation because it is provided by easy_install.\n\n#{force_text}" end unless ARGV.force? __make url, name