diff options
author | Leah Rowe <leah@libreboot.org> | 2025-05-27 11:18:18 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-05-27 11:18:18 +0100 |
commit | 974bdbb38159d90b90eeff68220c7464b418866d (patch) | |
tree | 5c1f12d1cc60041df088c7b99141e86503606907 | |
parent | dc6996252a0f516add85e0cbcf1693bfa80f8c99 (diff) |
vendor.sh: fix bad cbfstool path
i overlooked this one in the previous commit
there is always one.
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | include/vendor.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh index 3f287899..55373913 100644 --- a/include/vendor.sh +++ b/include/vendor.sh @@ -277,7 +277,7 @@ bootstrap() fx_ "x_ ./mk -b" printf "uefitool\nbiosutilities\nbios_extract\n" [ -d "${kbc1126_ec_dump%/*}" ] && x_ make -C "$cbdir/util/kbc1126" [ -n "$MRC_refcode_cbtree" ] && \ - cbfstoolref="elf/cbfstool/$MRC_refcode_cbtree/cbfstool" && \ + cbfstoolref="elf/coreboot/$MRC_refcode_cbtree/cbfstool" && \ x_ ./mk -d coreboot "$MRC_refcode_cbtree"; : } |