Merge pull request #33603 from obsidiansystems/cross-check

stdenv: Force `doCheck` to be false when we are cross compiling
This commit is contained in:
John Ericson
2018-01-09 15:09:54 -05:00
committed by GitHub
16 changed files with 47 additions and 30 deletions

View File

@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
"ac_cv_func_strnlen_working=yes"
];
doCheck = hostPlatform == buildPlatform;
doCheck = true; # not cross;
meta = {
description = "GNU Patch, a program to apply differences to files";