From e1ff17ed75aff0bed4f95a20284531b6bf6d98b5 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Wed, 29 Aug 2012 19:16:35 -0400 Subject: [PATCH] Force Wine to use stdenv for now Fixes Homebrew/homebrew#14535. --- Library/Homebrew/build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/build.rb b/Library/Homebrew/build.rb index 97365a2039..3fec81d373 100755 --- a/Library/Homebrew/build.rb +++ b/Library/Homebrew/build.rb @@ -56,7 +56,7 @@ def install f # TODO replace with Formula DSL # Python etc. build but then pip can't build stuff. # Scons resets ENV and then can't find superenv's build-tools. - stdenvs = %w{fontforge python python3 ruby ruby-enterprise-edition jruby} + stdenvs = %w{fontforge python python3 ruby ruby-enterprise-edition jruby wine} ARGV.unshift '--env=std' if (stdenvs.include?(f.name) or f.recursive_deps.detect{|d| d.name == 'scons' }) and not ARGV.include? '--env=super'