forked from mirrors/nixpkgs
pdsh: Fix user option "pdsh { rsh = true/false; };".
svn path=/nixpkgs/trunk/; revision=15172
This commit is contained in:
parent
ac24816344
commit
b7c0e6b66b
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||||
+ " " + (if readline == null then "--without-readline" else "--with-readline")
|
+ " " + (if readline == null then "--without-readline" else "--with-readline")
|
||||||
+ " " + (if ssh == null then "--without-ssh" else "--with-ssh")
|
+ " " + (if ssh == null then "--without-ssh" else "--with-ssh")
|
||||||
+ " " + (if pam == null then "--without-pam" else "--with-pam")
|
+ " " + (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-dshgroups"
|
||||||
+ " --with-xcpu"
|
+ " --with-xcpu"
|
||||||
+ " --without-genders"
|
+ " --without-genders"
|
||||||
|
|
Loading…
Reference in a new issue