uboot: Don't use stdenv.cross
This commit is contained in:
parent
9cd606467f
commit
a7f81284a5
1 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
|||
{ stdenv, fetchurl, bc, dtc, python2 }:
|
||||
{ stdenv, fetchurl, bc, dtc, python2
|
||||
, hostPlatform
|
||||
}:
|
||||
|
||||
let
|
||||
buildUBoot = { targetPlatforms
|
||||
|
@ -43,8 +45,8 @@ let
|
|||
|
||||
crossAttrs = {
|
||||
makeFlags = [
|
||||
"ARCH=${stdenv.cross.platform.kernelArch}"
|
||||
"CROSS_COMPILE=${stdenv.cross.config}-"
|
||||
"ARCH=${hostPlatform.platform.kernelArch}"
|
||||
"CROSS_COMPILE=${stdenv.cc.prefix}"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue