rustc: Disable doCheck on Darwin.

This commit is contained in:
Moritz Ulrich 2016-08-01 09:49:03 +02:00
parent d5569064c3
commit 6fd0591674

View File

@ -115,6 +115,7 @@ stdenv.mkDerivation {
preCheck = "export TZDIR=${tzdata}/share/zoneinfo"; preCheck = "export TZDIR=${tzdata}/share/zoneinfo";
doCheck = true; # Disable doCheck on Darwin to work around upstream issue
doCheck = !stdenv.isDarwin;
dontSetConfigureCross = true; dontSetConfigureCross = true;
} }