update/trees: don't run make if mode=fetch

this fixes a regression caused by a previous revision

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2023-10-20 08:03:45 +01:00
parent 54eb347a30
commit 182ee8e416
3 changed files with 17 additions and 8 deletions
+9 -3
View File
@@ -45,7 +45,10 @@ build_projects()
{
[ $# -gt 0 ] && x_ ./update trees ${_f} ${@}
[ "${mode}" = "fetch" ] && fetch_project_repo && return 0
if [ "${mode}" = "fetch" ]; then
fetch_project_repo
return 0
fi
codedir="src/${project}"
[ -d "${codedir}" ] || x_ ./update trees -f "${project}"
@@ -131,7 +134,10 @@ handle_src_tree()
romtype="normal"
target_dir="${cfgsdir}/${target}"
[ "${mode}" = "fetch" ] && fetch_project_trees && return 1
if [ "${mode}" = "fetch" ]; then
fetch_project_trees
return 1
fi
x_ mkdir -p "${elfdir}/${target}"
eval "$(setvars "" arch tree)"
@@ -159,7 +165,7 @@ handle_src_tree()
[ "$project" != "coreboot" ] && [ "$project" != "u-boot" ] && return 0
# u-boot and coreboot are both compiled with coreboot's crossgcc
[ -z ${mode} ] || return 0
[ -z "${mode}" ] || return 0
check_cross_compiler
}