mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-15 08:20:59 +02:00
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:
+9
-3
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user