diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-12 22:21:02 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-12 22:21:02 +0100 |
commit | 09881212c3ce8938156ac779463d8859dcddff6b (patch) | |
tree | 9ceaa0ffc1ee2c33cd51b2f6d5cb715b6d4fd32d /script/update/vendor/download | |
parent | 1f3316422d50158a56183672088d1991c02bede6 (diff) |
use me_cleaner from coreboot instead of upstream
coreboot closely matches upstream, whose current release
is version 1.2 from 2018, and coreboot has not changed it
in any meaningful way.
the upstream did add patches since, but they are documentation
patches only.
this means: we do not need to use the upstream version
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/update/vendor/download')
-rwxr-xr-x | script/update/vendor/download | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/update/vendor/download b/script/update/vendor/download index de5abb68..2d90b9b0 100755 --- a/script/update/vendor/download +++ b/script/update/vendor/download @@ -42,7 +42,7 @@ build_dependencies() { [ -d ${cbdir} ] || \ x_ ./update project trees -f coreboot ${cbdir##*/} - for d in uefitool biosutilities bios_extract me_cleaner; do + for d in uefitool biosutilities bios_extract; do [ -d "src/${d}" ] && continue x_ ./update project trees -f "${d}" done |