pdsh: Fix user option "pdsh { rsh = true/false; };".

svn path=/nixpkgs/trunk/; revision=15172
This commit is contained in:
Peter Simons 2009-04-20 12:12:56 +00:00
parent ac24816344
commit b7c0e6b66b

View file

@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
+ " " + (if readline == null then "--without-readline" else "--with-readline")
+ " " + (if ssh == null then "--without-ssh" else "--with-ssh")
+ " " + (if pam == null then "--without-pam" else "--with-pam")
+ " " + (if rsh == null then "--without-rsh" else "--with-rsh")
+ " " + (if rsh == false then "--without-rsh" else "--with-rsh")
+ " --with-dshgroups"
+ " --with-xcpu"
+ " --without-genders"