xz: Fix dependency on /bin/sh

This commit is contained in:
Shea Levy
2018-03-17 21:58:15 -04:00
parent 3a143dcad2
commit 86972b2321
+5
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";