forked from mirrors/nixpkgs
LinuxSampler: fix the build by disabling a check for a bug
Without the --disable-nptl-bug-check configure option LinuxSampler refuses to build. It seems to be a long standing bug. Despite this, I have used LinuxSampler for over a week now and it seems OK.
This commit is contained in:
parent
e825c522b6
commit
67a1c3df94
|
@ -13,6 +13,10 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = ./linuxsampler_lv2_sfz_fix.diff;
|
||||
|
||||
# It fails to compile without this option. I'm not sure what the bug
|
||||
# is, but everything works OK for me (goibhniu).
|
||||
configureFlags = [ "--disable-nptl-bug-check" ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -e 's/which/type -P/g' -i scripts/generate_parser.sh
|
||||
make -f Makefile.cvs
|
||||
|
|
Loading…
Reference in a new issue