aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorJack Nagel2013-09-21 19:27:24 -0500
committerJack Nagel2013-09-21 19:27:24 -0500
commit2eefba005f7cd6d3cb16f231328de30c699755de (patch)
tree6ad8fee4c9d7b4ba218f3dc347c09143f8c43d18 /Library/Homebrew/formula.rb
parent36f36174942fa37f5dbf64e46679d33a600a1157 (diff)
downloadbrew-2eefba005f7cd6d3cb16f231328de30c699755de.tar.bz2
Give this condition a more revealing name
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 6b14aba25..10e546d2f 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -88,6 +88,12 @@ class Formula
end
end
+ def default_build?
+ build = self.class.build.dup
+ build.concat(stable.options)
+ build.used_options.empty?
+ end
+
def url; active_spec.url; end
def version; active_spec.version; end
def mirrors; active_spec.mirrors; end