aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-08-16 01:33:41 -0500
committerJack Nagel2014-08-16 01:39:33 -0500
commit8a98d4b09c0c224c7c7ec1a2f0e0c9ff966cfe40 (patch)
tree2f59a328c4b2f9e00a9cb8821598e947a5e28735 /Library/Formula
parent4c1666cb4b3f86aa2fdf57adf490eb98cfd6e85f (diff)
downloadhomebrew-8a98d4b09c0c224c7c7ec1a2f0e0c9ff966cfe40.tar.bz2
Remove the universal accessor from BuildOptions
BuildOptions is now immutable (finally).
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/wine.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb
index 0a1cf8c35..c21cd3967 100644
--- a/Library/Formula/wine.rb
+++ b/Library/Formula/wine.rb
@@ -41,7 +41,9 @@ class Wine < Formula
# 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
+ def require_universal_deps?
+ true
+ end
# Wine will build both the Mac and the X11 driver by default, and you can switch
# between them. But if you really want to build without X11, you can.