diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/pdsh.rb | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Library/Formula/pdsh.rb b/Library/Formula/pdsh.rb index 184796b61..d073a7d32 100644 --- a/Library/Formula/pdsh.rb +++ b/Library/Formula/pdsh.rb @@ -7,13 +7,15 @@ class Pdsh < Formula depends_on 'readline' - # don't strip binaries - skip_clean ['bin', 'lib'] - def install - system "./configure", "--prefix=#{prefix}", "--with-ssh", "--without-rsh", - "--with-dshgroups", "--with-nodeupdown", - "--with-readline", "--without-xcpu", "--mandir=#{man}" + system "./configure", "--prefix=#{prefix}", + "--mandir=#{man}", + "--with-ssh", + "--without-rsh", + "--with-dshgroups", + "--with-nodeupdown", + "--with-readline", + "--without-xcpu" system "make install" end end |
