diff options
| author | Adam Vandenberg | 2012-02-12 22:54:53 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-12 22:54:53 -0800 |
| commit | 851e2e834434a4d9166e11d0b4c80e3449a717d4 (patch) | |
| tree | 871b83edd71192d25413d011969cd0c26c9fdd09 /Library | |
| parent | 9095f6124947592426e0513c6c3a6eb71220691e (diff) | |
| download | homebrew-851e2e834434a4d9166e11d0b4c80e3449a717d4.tar.bz2 | |
getmail: fix pathname usage
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/getmail.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/getmail.rb b/Library/Formula/getmail.rb index 704ffd488..ce46e758f 100644 --- a/Library/Formula/getmail.rb +++ b/Library/Formula/getmail.rb @@ -7,8 +7,9 @@ class Getmail < Formula def install scripts = %w[ getmail getmail_fetch getmail_maildir getmail_mbox ] - libexec.install 'getmailcore', scripts - bin.install_symlink libexec.prefixing(scripts) + libexec.install 'getmailcore' + libexec_scripts = libexec.install scripts + bin.install_symlink *libexec_scripts man1.install Dir['docs/*.1'] end end |
