aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-10-21 13:08:09 -0700
committerAdam Vandenberg2012-10-21 13:24:05 -0700
commitbeb7c5d2a12873e68b05e9d42b3fc81024977910 (patch)
treec394cb31b1a27d67594a7d82219400651998d8c0 /Library/Formula
parentcf366dedbc5fdb68d2aa86d3313eb324a87224ed (diff)
downloadhomebrew-beb7c5d2a12873e68b05e9d42b3fc81024977910.tar.bz2
pdsh: style nits
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdsh.rb14
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