diff options
| author | Jack Nagel | 2013-11-19 16:24:50 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-19 19:27:29 -0600 |
| commit | 9edbfaa6b7cf0053b04b44da693b4bc84a097e30 (patch) | |
| tree | 72ad94f95bf7186a2514b33b0863b144709a7c12 /Library/Formula | |
| parent | bb04958a24a9d20bb299b9a1923af0911825929f (diff) | |
| download | homebrew-9edbfaa6b7cf0053b04b44da693b4bc84a097e30.tar.bz2 | |
wine: enable superenv
Closes #24515.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wine.rb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index f7c69f129..b88569a12 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -30,8 +30,6 @@ class Wine < Formula depends_on 'little-cms2' end - env :std - # note that all wine dependencies should declare a --universal option in their formula, # otherwise homebrew will not notice that they are not built universal require_universal_deps @@ -92,11 +90,7 @@ class Wine < Formula end def install - # Build 32-bit; Wine doesn't support 64-bit host builds on OS X. - build32 = "-arch i386 -m32" - - ENV.append "CFLAGS", build32 - ENV.append "LDFLAGS", build32 + ENV.m32 # Build 32-bit; Wine doesn't support 64-bit host builds on OS X. # The clang that comes with Xcode 5 no longer miscompiles wine. Tested with 1.7.3. if ENV.compiler == :clang and MacOS.clang_build_version < 500 |
