From 1b77815d251db62fb34b56b432067d1e39a861b2 Mon Sep 17 00:00:00 2001 From: John Ericson Date: Thu, 25 Oct 2018 20:24:32 -0400 Subject: linux-headers: Fix bootstrap tools reference --- pkgs/os-specific/linux/kernel-headers/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'pkgs') diff --git a/pkgs/os-specific/linux/kernel-headers/default.nix b/pkgs/os-specific/linux/kernel-headers/default.nix index fa339e56e2e..eb0059f55c3 100644 --- a/pkgs/os-specific/linux/kernel-headers/default.nix +++ b/pkgs/os-specific/linux/kernel-headers/default.nix @@ -17,10 +17,8 @@ let # It may look odd that we use `stdenvNoCC`, and yet explicit depend on a cc. # We do this so we have a build->build, not build->host, C compiler. depsBuildBuild = [ buildPackages.stdenv.cc ]; - # TODO make unconditional next mass rebuild - nativeBuildInputs = [ perl ] ++ lib.optional - (stdenvNoCC.hostPlatform != stdenvNoCC.buildPlatform) - elf-header; + # `elf-header` is null when libc provides `elf.h`. + nativeBuildInputs = [ perl elf-header ]; extraIncludeDirs = lib.optional stdenvNoCC.hostPlatform.isPowerPC ["ppc"]; @@ -57,10 +55,15 @@ let installPhase = '' make headers_install INSTALL_HDR_PATH=$out $makeFlags - - # Some builds (e.g. KVM) want a kernel.release. - mkdir -p $out/include/config + '' + # Some builds (e.g. KVM) want a kernel.release. + + '' mkdir -p $out/include/config echo "${version}-default" > $out/include/config/kernel.release + '' + # These oddly named file records teh `SHELL` passed, which causes bootstrap + # tools run-time dependency. + + '' + find "$out" -name '..install.cmd' -print0 | xargs -0 rm ''; meta = with lib; { @@ -74,7 +77,6 @@ in { linuxHeaders = common { version = "4.18.3"; sha256 = "1m23hjd02bg8mqnd8dc4z4m3kxds1cyrc6j5saiwnhzbz373rvc1"; - # TODO make unconditional next mass rebuild patches = [ ./no-relocs.patch # for building x86 kernel headers on non-ELF platforms ./no-dynamic-cc-version-check.patch # so we can use `stdenvNoCC`, see `makeFlags` above -- cgit 1.4.1