diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-07 00:46:38 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-07 00:46:38 +0100 |
commit | 5e81024e979107148b76cfd3e132bbe0f0a3ca24 (patch) | |
tree | be82d13b0c5f9a6d1dd51afc9c7b67a2843d1d15 /script | |
parent | 9f8f230b61eeb7b69778ec3f9fc974bc98edda89 (diff) |
update/blobs: don't hardcode kbc1126 util check
use the variable that is set up in blobutil.sh
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script')
-rwxr-xr-x | script/update/blobs/download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/update/blobs/download b/script/update/blobs/download index b5cb65c5..d3979c32 100755 --- a/script/update/blobs/download +++ b/script/update/blobs/download @@ -48,7 +48,7 @@ build_dependencies() done [ -f "${uefiextract}" ] || \ x_ ./update project build -b uefitool - [ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \ + [ -f "${kbc1126_ec_dump}" ] || \ x_ make -C "${cbdir}/util/kbc1126" x_ ./build coreboot utils default } |