aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/compat
diff options
context:
space:
mode:
authorJack Nagel2014-08-16 01:33:41 -0500
committerJack Nagel2014-08-16 01:39:33 -0500
commite6498f4dfc37524be8d0827957ed75fc471ad345 (patch)
tree73b85c9b3cbd1bf2f68c9dc3863c4be221d093ba /Library/Homebrew/compat
parentcb7b9945cdd64ba100db4e803ffbb3832ef13186 (diff)
downloadbrew-e6498f4dfc37524be8d0827957ed75fc471ad345.tar.bz2
Remove the universal accessor from BuildOptions
BuildOptions is now immutable (finally).
Diffstat (limited to 'Library/Homebrew/compat')
-rw-r--r--Library/Homebrew/compat/formula.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/compat/formula.rb b/Library/Homebrew/compat/formula.rb
index 9a3e95065..11f65e36d 100644
--- a/Library/Homebrew/compat/formula.rb
+++ b/Library/Homebrew/compat/formula.rb
@@ -43,4 +43,8 @@ class Formula
def self.factory(name)
Formulary.factory(name)
end
+
+ def self.require_universal_deps
+ define_method(:require_universal_deps?) { true }
+ end
end