1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00

guile: doCheck = false on i686-linux

It fails on Hydra now; I can't reproduce it locally and don't feel like
debugging it. It might be due to the warning below. That appears on
x86_64-linux as well, but we've got no problems in there so far...

warning: call to primitive-fork while multiple threads are running;
         further behavior unspecified.  See "Processes" in the
         manual, for more information.
This commit is contained in:
Vladimír Čunát 2016-11-26 11:35:23 +01:00
parent 925b335607
commit 7a88f314cb
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -55,7 +55,8 @@
'';
# make check doesn't work on darwin
doCheck = !stdenv.isDarwin;
# On i686-linux we got some error that doesn't always appear.
doCheck = !stdenv.isDarwin && (stdenv.system != "i686-linux");
setupHook = ./setup-hook-2.0.sh;