From 817f27e3fdc10907b39d6e6b4b4a457706ba8b63 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sat, 1 Sep 2012 00:27:52 -0400 Subject: Blacklist graphviz: don't use superenv Mysterious link errors due to two missing symbols are too mysterious for me. For now, blacklist. Fixes #14566.--- Library/Homebrew/build.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/build.rb b/Library/Homebrew/build.rb index c8b310ae4..dfbbf98e2 100755 --- a/Library/Homebrew/build.rb +++ b/Library/Homebrew/build.rb @@ -72,7 +72,9 @@ def pre_superenv_hacks f paths = ORIGINAL_PATHS.map{|pn| pn.realpath.to_s rescue nil } - %w{/usr/X11/bin /opt/X11/bin} ENV['PATH'] = "#{ENV['PATH']}:#{paths.join(':')}" end - stdenvs = %w{fontforge python python3 ruby ruby-enterprise-edition jruby wine} + # fontforge needs 10.7 SDK, wine 32 bit, graphviz has mysteriously missing symbols + # and ruby/python etc. create gem/pip that then won't work + stdenvs = %w{fontforge python python3 ruby ruby-enterprise-edition jruby wine graphviz} ARGV.unshift '--env=std' if (stdenvs.include?(f.name) or f.recursive_deps.detect{|d| d.name == 'scons' }) and not ARGV.include? '--env=super' -- cgit v1.2.3