xz: Fix dependency on /bin/sh

This commit is contained in:
Shea Levy
2018-03-16 16:16:25 -04:00
parent 3a143dcad2
commit 86972b2321

View File

@@ -12,6 +12,11 @@ stdenv.mkDerivation rec {
doCheck = true;
preCheck = ''
# Tests have a /bin/sh dependency...
patchShebangs tests
'';
# In stdenv-linux, prevent a dependency on bootstrap-tools.
preConfigure = "CONFIG_SHELL=/bin/sh";