Skip to content

Commit b814e3d

Browse files
Aleksanaaalyssais
authored andcommitted
stdenv-bootstrap-tools: use bashNonInteractive
Currently bash is bashInteractive, and it depends on readline. We don't copy readline so bash from bootstrap-tools is broken.
1 parent 81df257 commit b814e3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkgs/stdenv/linux/stdenv-bootstrap-tools.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
lib,
33
stdenv,
4-
bash,
4+
bashNonInteractive,
55
binutils,
66
bootBinutils,
77
bootGCC,
@@ -111,7 +111,7 @@ stdenv.mkDerivation (finalAttrs: {
111111
cp -d ${coreutilsMinimal.out}/bin/* $out/bin
112112
(cd $out/bin && rm vdir dir sha*sum pinky factor pathchk runcon shuf who whoami shred users)
113113
114-
cp ${bash.out}/bin/bash $out/bin
114+
cp ${bashNonInteractive.out}/bin/bash $out/bin
115115
cp ${findutils.out}/bin/find $out/bin
116116
cp ${findutils.out}/bin/xargs $out/bin
117117
cp -d ${diffutils.out}/bin/* $out/bin

0 commit comments

Comments
 (0)