Fix wrong condition related to enableKerberos

This commit is contained in:
Michael Raskin 2015-06-27 11:40:38 +03:00
parent 7297255019
commit 9bf2c6a8ab

View File

@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
"--private-libraries=NONE"
"--builtin-libraries=replace"
]
++ optional (enableKerberos != null && kerberos.implementation == "krb5") "--with-system-mitkrb5"
++ optional (enableKerberos && kerberos.implementation == "krb5") "--with-system-mitkrb5"
++ optional (!enableDomainController) "--without-ad-dc"
++ optionals (!enableLDAP) [ "--without-ldap" "--without-ads" ];