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
No known key found for this signature in database
GPG Key ID: 5C0BD6957D86FE27

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";