mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
bash: make tests run, but dependency cycle
This commit is contained in:
parent
0b67d69c13
commit
ef2f89b2b9
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, buildPackages
|
||||
, fetchurl, binutils ? null, bison, autoconf
|
||||
, fetchurl, binutils ? null, bison, autoconf, utillinux
|
||||
, buildPlatform, hostPlatform
|
||||
|
||||
# patch for cygwin requires readline support
|
||||
|
@ -87,6 +87,9 @@ stdenv.mkDerivation rec {
|
|||
"SHOBJ_LIBS=-lbash"
|
||||
];
|
||||
|
||||
checkInputs = [ utillinux ];
|
||||
doCheck = false; # dependency cycle, needs to be interactive
|
||||
|
||||
postInstall = ''
|
||||
ln -s bash "$out/bin/sh"
|
||||
rm -f $out/lib/bash/Makefile.inc
|
||||
|
|
Loading…
Reference in a new issue