summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2018-07-24 22:38:47 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2018-07-24 23:36:06 +0300
commit4cec65482a1bd0c4bbfa9181d62d7f006269015b (patch)
treea19e73f3064369921fa1c6034c0d6efd9522ef1b /pkgs
parentc6ed851fe22059b9df9eb9fe9d50fe8032e8b79c (diff)
downloadnixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar.gz
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar.bz2
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar.lz
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar.xz
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.tar.zst
nixlib-4cec65482a1bd0c4bbfa9181d62d7f006269015b.zip
kernel: Respect makeFlagsArray in more places
It's used two lines above, so be consistent.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/kernel/manual-config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix
index d3fd87912fb8..5d08ab05d97f 100644
--- a/pkgs/os-specific/linux/kernel/manual-config.nix
+++ b/pkgs/os-specific/linux/kernel/manual-config.nix
@@ -119,7 +119,7 @@ let
         make $makeFlags "''${makeFlagsArray[@]}" oldconfig
         runHook postConfigure
 
-        make $makeFlags prepare
+        make $makeFlags "''${makeFlagsArray[@]}" prepare
         actualModDirVersion="$(cat $buildRoot/include/config/kernel.release)"
         if [ "$actualModDirVersion" != "${modDirVersion}" ]; then
           echo "Error: modDirVersion ${modDirVersion} specified in the Nix expression is wrong, it should be: $actualModDirVersion"