Skip to content

Commit

Permalink
Merge pull request #268 from samueldr-wip/fix/kernel-builder-walleye
Browse files Browse the repository at this point in the history
kernel-builder: Call either of install or zinstall
  • Loading branch information
samueldr committed Dec 31, 2020
2 parents 5386b3f + 29a1008 commit 41923e4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions overlay/mobile-nixos/kernel/builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -337,10 +337,8 @@ stdenv.mkDerivation (inputArgs // {
# no-op buildPhase if we combine build and install steps
buildPhase = if enableCombiningBuildAndInstallQuirk then ":" else null;

installTargets = [
"install"
]
++ optional (isCompressed != false) "zinstall"
installTargets =
if isCompressed != false then [ "zinstall" ] else [ "install" ]
++ installTargets
;

Expand Down

0 comments on commit 41923e4

Please sign in to comment.