From 2f050b5d13784d6ab4b63405db495b7a8485f61a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 24 Feb 2016 11:01:11 +0100 Subject: [PATCH] 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. --- pkgs/stdenv/linux/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index ac7d8f5c706c..cd49d4a5a742 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -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;