about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2021-01-22 15:15:58 -0500
committerGitHub <noreply@github.com>2021-01-22 15:15:58 -0500
commitd95aebbe0e723cb3d275d68b8529f0891a23df96 (patch)
tree53d25bb2d4fa366a5f74bacb5e71bda21e7823b6 /pkgs/top-level
parent412a9e7d7c8992d77e382f53b7eb1ebefb271735 (diff)
parent8929989614589ee3acd070a6409b2b9700c92d65 (diff)
Merge pull request #107214 from Ericson2314/linux-config-cleanup
lib: Clean up how linux and gcc config is specified
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index bd86fed4cb298..ed9f304796984 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -19291,7 +19291,7 @@ in
     buildPhase = ''
       set -x
       make \
-        ARCH=${stdenv.hostPlatform.kernelArch} \
+        ARCH=${stdenv.hostPlatform.linuxArch} \
         HOSTCC=${buildPackages.stdenv.cc.targetPrefix}gcc \
         ${makeTarget}
     '';