diff options
| author | Adam Vandenberg | 2012-10-21 13:08:09 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-21 13:24:05 -0700 |
| commit | beb7c5d2a12873e68b05e9d42b3fc81024977910 (patch) | |
| tree | c394cb31b1a27d67594a7d82219400651998d8c0 /Library/Formula | |
| parent | cf366dedbc5fdb68d2aa86d3313eb324a87224ed (diff) | |
| download | homebrew-beb7c5d2a12873e68b05e9d42b3fc81024977910.tar.bz2 | |
pdsh: style nits
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 |
