aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2011-08-05 13:19:10 +0100
committerMax Howell2011-08-24 22:30:44 +0100
commitb0c6970dec20a983309bcfda9df72074582f0a6f (patch)
tree341723048e6dd13f958978e46f49ed59b93a4c8c /Library
parent45ba18b4d5df138e7388fa911ce3810620c18a69 (diff)
downloadbrew-b0c6970dec20a983309bcfda9df72074582f0a6f.tar.bz2
Recursively scan for keg-only deps before generating build ENV
Remove cairo dep from gtk formula as a consequence.
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Homebrew/build.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/build.rb b/Library/Homebrew/build.rb
index 9844ef401..36c3da268 100755
--- a/Library/Homebrew/build.rb
+++ b/Library/Homebrew/build.rb
@@ -40,7 +40,7 @@ at_exit do
end
def install f
- f.deps.uniq.each do |dep|
+ f.recursive_deps.uniq.each do |dep|
dep = Formula.factory dep
if dep.keg_only?
ENV.prepend 'LDFLAGS', "-L#{dep.lib}"