aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMax Howell2012-09-01 00:27:52 -0400
committerMax Howell2012-09-01 00:27:52 -0400
commitfd0a5419a958e6826e0605c3d56001b2dba8ec5a (patch)
treee9964207cdb759a90ddf3cd9c972a6a26e0d6a3a /Library/Homebrew
parent429226d5628797d071154bff39507f0f8cc1fa31 (diff)
downloadbrew-fd0a5419a958e6826e0605c3d56001b2dba8ec5a.tar.bz2
Blacklist graphviz: don't use superenv
Mysterious link errors due to two missing symbols are too mysterious for me. For now, blacklist. Fixes Homebrew/homebrew#14566.
Diffstat (limited to 'Library/Homebrew')
-rwxr-xr-xLibrary/Homebrew/build.rb4
1 files changed, 3 insertions, 1 deletions
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'