diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-07 00:45:34 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-07 00:45:34 +0100 |
commit | 9f8f230b61eeb7b69778ec3f9fc974bc98edda89 (patch) | |
tree | 5fad26dedfe8c07a4d7c0748b1c7cf2ba1ece4eb /script/update/blobs | |
parent | fe502da944c5ca05e4a57d1ca68a0a3bfc477b16 (diff) |
update/blobs: don't needlessly re-build uefitool
during the switch to src/ for all downloads, i
overlooked that the path check was hardcoded.
now the check for this binary is corrected.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/blobs')
-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 256f27cd..b5cb65c5 100755 --- a/script/update/blobs/download +++ b/script/update/blobs/download @@ -46,7 +46,7 @@ build_dependencies() [ -d "${d}" ] && continue x_ ./update project repo "${d}" done - [ -f uefitool/uefiextract ] || \ + [ -f "${uefiextract}" ] || \ x_ ./update project build -b uefitool [ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \ x_ make -C "${cbdir}/util/kbc1126" |