trees: don't say check elf/ if build.list missing
(on single tree projects. this complements the last patch) Signed-off-by: Leah Rowe <leah@libreboot.org>20240612_branch
parent
dea41f138a
commit
06c78e1321
|
@ -46,6 +46,8 @@ main()
|
||||||
$_cmd $@
|
$_cmd $@
|
||||||
|
|
||||||
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0
|
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0
|
||||||
|
|
||||||
|
[ -f "$listfile" ] || return 0
|
||||||
[ -z "$mode" ] && printf "\n\nDone! Check %s/\n\n" "$elfdir"; return 0
|
[ -z "$mode" ] && printf "\n\nDone! Check %s/\n\n" "$elfdir"; return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,6 +70,7 @@ build_projects()
|
||||||
[ "$mode" = "distclean" ] && mode="clean"
|
[ "$mode" = "distclean" ] && mode="clean"
|
||||||
run_make_command || return 0
|
run_make_command || return 0
|
||||||
|
|
||||||
|
[ -f "$listfile" ] || return 0
|
||||||
[ -n "$mode" ] || x_ mkdir -p "$elfdir"
|
[ -n "$mode" ] || x_ mkdir -p "$elfdir"
|
||||||
[ -n "$mode" ] || copy_elf; return 0
|
[ -n "$mode" ] || copy_elf; return 0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue