aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/exceptions.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
-rw-r--r--Library/Homebrew/exceptions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb
index f88b6fc57..6829c17a9 100644
--- a/Library/Homebrew/exceptions.rb
+++ b/Library/Homebrew/exceptions.rb
@@ -92,10 +92,10 @@ class FormulaInstallationAlreadyAttemptedError < Homebrew::InstallationError
end
class UnsatisfiedDependencyError < Homebrew::InstallationError
- def initialize(f, dep)
+ def initialize(f, dep, inherited_options)
super f, <<-EOS.undent
#{f} dependency #{dep} not installed with:
- #{dep.missing_options * ', '}
+ #{dep.missing_options(inherited_options) * ', '}
EOS
end
end