aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula_installer.rb
diff options
context:
space:
mode:
authorJack Nagel2015-02-06 22:36:53 -0500
committerJack Nagel2015-02-07 11:02:35 -0500
commitcd522b171933edd8136ae5ad2bd3bc706dfdbe02 (patch)
tree32137de3ac52a7a690bb2a4d58dafdfc6a38adee /Library/Homebrew/formula_installer.rb
parent4851b1e7a877246d57ca87e9e48b7d962f100015 (diff)
downloadbrew-cd522b171933edd8136ae5ad2bd3bc706dfdbe02.tar.bz2
Always respect build options when invoking post_install
Fixes Homebrew/homebrew#36335.
Diffstat (limited to 'Library/Homebrew/formula_installer.rb')
-rw-r--r--Library/Homebrew/formula_installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb
index 46a1345ce..5ef6660fd 100644
--- a/Library/Homebrew/formula_installer.rb
+++ b/Library/Homebrew/formula_installer.rb
@@ -594,7 +594,7 @@ class FormulaInstaller
end
def post_install
- formula.post_install
+ formula.run_post_install
rescue Exception => e
opoo "The post-install step did not complete successfully"
puts "You can try again using `brew postinstall #{formula.name}`"