diff options
| author | Trey Harris | 2014-02-11 12:45:15 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-11 21:02:10 -0800 |
| commit | d744523eb329d76e44460bb2cdd487a110fb5275 (patch) | |
| tree | e02fbb146dd32e4766a032788d711f21c1f70a10 /Library | |
| parent | 668bd62f7f0c9836c3b19c337094389a6f95ede8 (diff) | |
| download | homebrew-d744523eb329d76e44460bb2cdd487a110fb5275.tar.bz2 | |
zsh: 5.0.5 - correctly handle info files
When HOMEBREW_KEEP_INFO is set, install zsh info files. This involves
a second make install.info, so wasn't previously happening.
Closes #26633.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/zsh.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/zsh.rb b/Library/Formula/zsh.rb index 58da24751..c5e5ba318 100644 --- a/Library/Formula/zsh.rb +++ b/Library/Formula/zsh.rb @@ -39,6 +39,10 @@ class Zsh < Formula "$(libdir)/$(tzsh)/$(VERSION)", "$(libdir)" system "make install" + + if ENV['HOMEBREW_KEEP_INFO'] + system "make install.info" + end end def test |
