treewide: Make configureFlags lists

This commit is contained in:
John Ericson
2018-08-03 17:06:03 -04:00
parent 85a9913edd
commit db965063b3
164 changed files with 380 additions and 263 deletions
+8 -7
View File
@@ -18,13 +18,14 @@ stdenv.mkDerivation rec {
buildInputs = [ intltool utillinux ];
configureFlags = ""
+ " --with-media-dir=${mediaDir}"
+ " --with-lock-dir=${lockDir}"
+ " --with-whitelist=${whiteList}"
+ " --with-mount-prog=${utillinux}/bin/mount"
+ " --with-umount-prog=${utillinux}/bin/umount"
+ " --with-mount-ntfs3g=${ntfs3g}/sbin/mount.ntfs-3g";
configureFlags = [
"--with-media-dir=${mediaDir}"
"--with-lock-dir=${lockDir}"
"--with-whitelist=${whiteList}"
"--with-mount-prog=${utillinux}/bin/mount"
"--with-umount-prog=${utillinux}/bin/umount"
"--with-mount-ntfs3g=${ntfs3g}/sbin/mount.ntfs-3g"
];
postConfigure = ''
# etc/Mafile.am is hardcoded and it does not respect the --prefix option.