diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-13 03:20:33 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-13 03:22:37 +0100 |
commit | c44a38aefc9dc4e150b8a11d904a16cf358b9b66 (patch) | |
tree | ba82fd00adf888b68978df49f884b5cca6aae5f2 /script/build/fw | |
parent | 42068f7ce11b88e13b4bf3f2d2290bc4d16d60b7 (diff) |
only build cbutils if required
it's sometimes done unconditionally. this change
ensures that it is not repeated needlessly.
i observed otherwise that cbfstool would be
re-built from time to time, even if it was built.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/build/fw')
-rwxr-xr-x | script/build/fw/coreboot | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/build/fw/coreboot b/script/build/fw/coreboot index bf7943ac..4cdf64ff 100755 --- a/script/build/fw/coreboot +++ b/script/build/fw/coreboot @@ -132,7 +132,8 @@ prepare_target() cbfstool="cbutils/${tree}/cbfstool" cbrom="${cbdir}/build/coreboot.rom" - x_ ./update project trees -b coreboot utils ${tree} + [ -f "${cbfstool}" ] || \ + x_ ./update project trees -b coreboot utils ${tree} build_dependency_seabios |