mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Hack to get KVM to build again.
svn path=/nixpkgs/trunk/; revision=11038
This commit is contained in:
parent
bd680bfc0b
commit
bc8eb14767
1 changed files with 6 additions and 1 deletions
|
@ -15,7 +15,12 @@ stdenv.mkDerivation {
|
|||
# e2fsprogs is needed for libuuid.
|
||||
buildInputs = [zlib e2fsprogs SDL alsaLib];
|
||||
|
||||
preConfigure = "for i in configure user/configure; do substituteInPlace $i --replace /bin/bash $shell; done";
|
||||
preConfigure = ''
|
||||
for i in configure user/configure; do
|
||||
substituteInPlace $i --replace /bin/bash $shell
|
||||
done
|
||||
substituteInPlace libkvm/Makefile --replace kvm_para.h kvm.h # !!! quick hack
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://kvm.qumranet.com/;
|
||||
|
|
Loading…
Reference in a new issue