aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-12 22:54:53 -0800
committerAdam Vandenberg2012-02-12 22:54:53 -0800
commit851e2e834434a4d9166e11d0b4c80e3449a717d4 (patch)
tree871b83edd71192d25413d011969cd0c26c9fdd09 /Library
parent9095f6124947592426e0513c6c3a6eb71220691e (diff)
downloadhomebrew-851e2e834434a4d9166e11d0b4c80e3449a717d4.tar.bz2
getmail: fix pathname usage
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/getmail.rb5
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