tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zfs: pass kernel build flags correctly (#435553)
Vladimír Čunát
6 months ago
bbcae394
2d597968
+1
-3
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
zfs
generic.nix
+1
-3
pkgs/os-specific/linux/zfs/generic.nix
···
221
221
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
222
222
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
223
223
]
224
224
-
++ kernelModuleMakeFlags
224
224
+
++ map (f: "KERNEL_${f}") kernelModuleMakeFlags
225
225
);
226
226
-
227
227
-
makeFlags = optionals buildKernel kernelModuleMakeFlags;
228
226
229
227
enableParallelBuilding = true;
230
228