Convert some *Flags from strings to lists
This commit is contained in:
@@ -14,7 +14,7 @@ in stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ libnfnetlink ];
|
||||
|
||||
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
|
||||
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
# All files installed to /etc are just static data that can go in the store
|
||||
makeFlags = "PREFIX=$(out) ETCDIR=$(out)/etc";
|
||||
makeFlags = [ "PREFIX=$(out)" "ETCDIR=$(out)/etc" ];
|
||||
|
||||
postInstall = ''
|
||||
ln -sv ${geolite-legacy}/share/GeoIP/GeoIP.dat $out/etc/netsniff-ng/country4.dat
|
||||
|
||||
Reference in New Issue
Block a user