Fix libpayload xcompile xgcc path
The libpaylaod xcompile script path to xgcc should look for coreboot/util, not libpayload/util. Change-Id: I565801549cdcdfcf55ecef1b543a982f969f435b Signed-off-by: Marc Jones <marc.jones@se-eng.com> Reviewed-on: http://review.coreboot.org/2261 Tested-by: build bot (Jenkins) Reviewed-by: Steven Sherk <steven.sherk@se-eng.com> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
2d5c0e6885
commit
e876819975
|
@ -153,7 +153,7 @@ TARCH_x86="i386"
|
|||
TBFDARCH_x86="i386"
|
||||
TCLIST_x86="i386 x86_64"
|
||||
TWIDTH_x86="32"
|
||||
XGCCPATH=${1:-"`pwd`/util/crossgcc/xgcc/bin/"}
|
||||
XGCCPATH=${1:-"`pwd`/../../util/crossgcc/xgcc/bin/"}
|
||||
|
||||
# This loops over all supported architectures.
|
||||
for architecture in $SUPPORTED_ARCHITECTURE; do
|
||||
|
|
Loading…
Reference in New Issue