aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-09-19 10:26:01 -0700
committerAdam Vandenberg2010-10-12 07:13:27 -0700
commitc823aabb98fb5a076c553b885e983dd5ca2dc956 (patch)
tree5fb275c46966798d544c9d41bebf322df4b89b21
parent3d7c11ac0e35b3584d1c5b10ee7d44b51223584e (diff)
downloadhomebrew-c823aabb98fb5a076c553b885e983dd5ca2dc956.tar.bz2
Allow :build dependencies.
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 6a382383b..d6a536f5f 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -528,7 +528,7 @@ EOF
case value
when :python, :perl, :ruby, :jruby
@external_deps[value] << key
- when :optional, :recommended
+ when :optional, :recommended, :build
@deps << key
else
raise "Unsupported dependency type #{value}"