treewide: configureFlags is a flat list

This commit is contained in:
Robin Gloster
2019-12-31 01:34:39 +01:00
committed by Jan Tojnar
parent a534e750a8
commit e9c27ed5f9
5 changed files with 19 additions and 16 deletions
+2 -2
View File
@@ -36,8 +36,8 @@ stdenv.mkDerivation rec {
"--enable-early-chroot"
"--sysconfdir=/etc"
"--localstatedir=/var"
(lib.optional stdenv.isLinux "--with-randomdev=/dev/random")
] ++ stdenv.lib.optionals (openldap != null) [ "--with-ldap" "--with-ldapcrypto" ];
] ++ lib.optional stdenv.isLinux "--with-randomdev=/dev/random"
++ stdenv.lib.optionals (openldap != null) [ "--with-ldap" "--with-ldapcrypto" ];
NIX_CFLAGS_COMPILE = builtins.toString [
"-Wno-error=pointer-compare"