aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2009-10-23 14:50:41 +0100
committerMax Howell2009-10-23 19:20:16 +0100
commit9338e8e74f81b82cd5772a42fc0cbdf3c7b79385 (patch)
tree95898ba4fb84f2beca7bdf792ab68f949774ea7d /Library
parentf5779b86fd3cf6ccfeeb5743f963bda5c7adc0f8 (diff)
downloadhomebrew-9338e8e74f81b82cd5772a42fc0cbdf3c7b79385.tar.bz2
Remove mercurial and scons from the create blacklist
Blacklist wxwidgets, it's in /usr/X11/lib.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/brew.h.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/brew.h.rb b/Library/Homebrew/brew.h.rb
index f02ea8731..144e4683d 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