aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Woodruff2015-05-27 23:05:16 -0400
committerMisty De Meo2015-08-21 10:56:46 -0700
commitdcfac4f5714c8d37e38b62b2c735b29d3805c28e (patch)
treebd8d79d76026aeb93898aa4e500e2b62dd210303
parentab10ab42fa2f85f5b7abce733a02ea7a47e98683 (diff)
downloadbrew-dcfac4f5714c8d37e38b62b2c735b29d3805c28e.tar.bz2
add install_relocation_tools stub
-rw-r--r--Library/Homebrew/formula_installer.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 9ea9b31ae..ed02abb9a 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -166,6 +166,7 @@ class FormulaInstaller
if pour_bottle?(:warn => true)
begin
+ install_relocation_tools if formula.bottle.needs_relocation?
pour
rescue => e
raise if ARGV.homebrew_developer?
@@ -326,6 +327,11 @@ class FormulaInstaller
@show_header = true unless deps.empty?
end
+ def install_relocation_tools
+ ohai "placeholder"
+ true
+ end
+
class DependencyInstaller < FormulaInstaller
def initialize(*)
super