kernel: Respect makeFlagsArray in more places

It's used two lines above, so be consistent.

+1 -1
+1 -1
pkgs/os-specific/linux/kernel/manual-config.nix
··· 119 119 make $makeFlags "''${makeFlagsArray[@]}" oldconfig 120 120 runHook postConfigure 121 121 122 - make $makeFlags prepare 122 + make $makeFlags "''${makeFlagsArray[@]}" prepare 123 123 actualModDirVersion="$(cat $buildRoot/include/config/kernel.release)" 124 124 if [ "$actualModDirVersion" != "${modDirVersion}" ]; then 125 125 echo "Error: modDirVersion ${modDirVersion} specified in the Nix expression is wrong, it should be: $actualModDirVersion"