diff options
author | Leah Rowe <leah@libreboot.org> | 2024-05-25 00:37:26 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-05-25 00:37:26 +0100 |
commit | 7bab0cf9ed677fd69e48ba79b2defd4e643a7f82 (patch) | |
tree | 627806ce12f682b01cf40dbbdb37f63b3ddf3e20 | |
parent | 0a50eaf2277c95d80c22d64de7a0ec76329ebb03 (diff) |
trees: also use UPDATED_SUBMODULES=1 on crossgcc
i overlooked this in the previous revision
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | script/trees | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/trees b/script/trees index b01a6c39..efb6874a 100755 --- a/script/trees +++ b/script/trees @@ -170,7 +170,8 @@ check_cross_compiler() [ -n "${xlang}" ] && export BUILD_LANGUAGES="$xlang" [ -d "${cbdir}/util/crossgcc/xgcc/${_xarch}/" ] && continue - x_ make -C "$cbdir" crossgcc-${_xarch%-*} CPUS=$threads + x_ make -C "$cbdir" crossgcc-${_xarch%-*} CPUS=$threads \ + UPDATED_SUBMODULES=1 done } |