diff options
| author | Jack Nagel | 2015-02-06 22:36:53 -0500 |
|---|---|---|
| committer | Jack Nagel | 2015-02-07 11:02:35 -0500 |
| commit | c7a9d32c69b805b1ac5d8f2e3cf7479e3639b3d2 (patch) | |
| tree | 1128cde9388a1d55fee7a0dd71898998964b4f02 /Library/Homebrew/cmd/postinstall.rb | |
| parent | 91310e4f722490b359053e0a4d48cd83a5ee4915 (diff) | |
| download | homebrew-c7a9d32c69b805b1ac5d8f2e3cf7479e3639b3d2.tar.bz2 | |
Always respect build options when invoking post_install
Fixes #36335.
Diffstat (limited to 'Library/Homebrew/cmd/postinstall.rb')
| -rw-r--r-- | Library/Homebrew/cmd/postinstall.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/postinstall.rb b/Library/Homebrew/cmd/postinstall.rb index 52a2c1d47..8e145d3fd 100644 --- a/Library/Homebrew/cmd/postinstall.rb +++ b/Library/Homebrew/cmd/postinstall.rb @@ -1,5 +1,5 @@ module Homebrew def postinstall - ARGV.formulae.each {|f| f.post_install } + ARGV.formulae.each { |f| f.run_post_install } end end |
