summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2024-06-06 21:33:22 +0100
committerLeah Rowe <leah@libreboot.org>2024-06-06 21:33:22 +0100
commitd1ba085153efadaef9bc124efd043c06658ab969 (patch)
tree4ed47d9b3a6a15169953b50abb09269b41f718ae /include
parent7e49fe4b9b931f6b0eb3d8ecb3e684daadac9131 (diff)
fix build issue building coreboot utils
just run make directly. the trees script isn't really designed to directly build directories, so don't. nothing wrong with good old fashioned make -C Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-xinclude/lib.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib.sh b/include/lib.sh
index 67bc0f70..f4214e27 100755
--- a/include/lib.sh
+++ b/include/lib.sh
@@ -157,7 +157,7 @@ check_defconfig()
handle_coreboot_utils()
{
for util in cbfstool ifdtool; do
- x_ ./update trees $_f "src/coreboot/$1/util/$util"
+ x_ make -C "src/coreboot/$1/util/$util"
[ -z "$mode" ] && [ ! -f "cbutils/$1/$util" ] && \
x_ mkdir -p "cbutils/$1" && \
x_ cp "src/coreboot/$1/util/$util/$util" "cbutils/$1"