Merge pull request #48245 from volth/patch-258

bootStage1: fix cross build
This commit is contained in:
Jörg Thalheim
2018-10-12 14:42:43 +01:00
committed by GitHub

View File

@@ -251,9 +251,9 @@ let
postInstall = ''
echo checking syntax
# check both with bash
${pkgs.bash}/bin/sh -n $target
${pkgs.buildPackages.bash}/bin/sh -n $target
# and with ash shell, just in case
${extraUtils}/bin/ash -n $target
${pkgs.buildPackages.busybox}/bin/ash -n $target
'';
inherit udevRules extraUtils modulesClosure;