mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
binutils: disable installcheck for different targetPlatforms
This commit is contained in:
parent
fed9423825
commit
35c9435d15
@ -1,6 +1,6 @@
|
||||
{ stdenv, buildPackages
|
||||
, fetchurl, zlib, autoreconfHook264
|
||||
, hostPlatform, targetPlatform
|
||||
, hostPlatform, buildPlatform, targetPlatform
|
||||
, noSysDirs, gold ? true, bison ? null
|
||||
}:
|
||||
|
||||
@ -121,6 +121,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = false; # fails
|
||||
|
||||
# else fails with "./sanity.sh: line 36: $out/bin/size: not found"
|
||||
doInstallCheck = buildPlatform == hostPlatform && hostPlatform == targetPlatform;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
passthru = {
|
||||
|
Loading…
Reference in New Issue
Block a user