opensm: use native shell to run autogen.sh

This commit is contained in:
Markus Kowalewski 2018-10-08 21:11:14 +02:00
parent ced5563056
commit e6c947ad70
No known key found for this signature in database
GPG key ID: D865C8A91D7025EB

View file

@ -15,7 +15,10 @@ stdenv.mkDerivation rec {
buildInputs = [ rdma-core ];
preConfigure = "bash ./autogen.sh";
preConfigure = ''
patchShebangs ./autogen.sh
./autogen.sh
'';
enableParallelBuilding = true;