stdenvLinux: Use bash instead of sh from bootstrapTools

"sh" is also bash, but invoking it as "sh" disables certain features
like process substitution.

Closes #13395.
This commit is contained in:
Eelco Dolstra 2016-02-24 11:01:11 +01:00
parent f05bc0444a
commit 2f050b5d13

View File

@ -78,7 +78,7 @@ rec {
dontPatchShebangs=1
${commonPreHook}
'';
shell = "${bootstrapTools}/bin/sh";
shell = "${bootstrapTools}/bin/bash";
initialPath = [bootstrapTools];
fetchurlBoot = import ../../build-support/fetchurl {
stdenv = stage0.stdenv;