kernel: Don't propagate the dev output
The current default multiple-output propagation rules don't seem to work too well if the dev output isn't the first one; without this we get an unnecessary runtime reference to the kernel headers.
This commit is contained in:
parent
1ac0e05f69
commit
09637ac363
@ -74,7 +74,7 @@ let
|
|||||||
|
|
||||||
installsFirmware = (config.isEnabled "FW_LOADER") &&
|
installsFirmware = (config.isEnabled "FW_LOADER") &&
|
||||||
(isModular || (config.isDisabled "FIRMWARE_IN_KERNEL"));
|
(isModular || (config.isDisabled "FIRMWARE_IN_KERNEL"));
|
||||||
in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // {
|
in (optionalAttrs isModular { outputs = [ "out" "dev" ]; propagatedOutputs = ""; }) // {
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit version modDirVersion config kernelPatches;
|
inherit version modDirVersion config kernelPatches;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user