summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-10-04 08:08:34 +0100
committerLeah Rowe <leah@libreboot.org>2025-10-04 08:08:34 +0100
commit70cdb03f7f4c229917b096bde14473e6609f4643 (patch)
treec3c42080f9ce78eb2818dbe96accb46c889376ab /include
parent1eafcf9029eb245b73e0af33672848e368082029 (diff)
vendor.sh: correction to fsp hack
i unrolled these lines earlier, but this line was incorrect; dl was already handled. it's dl_bkup that we have to handle here. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r--include/vendor.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vendor.sh b/include/vendor.sh
index 7a9f4ffe..6dd84f6a 100644
--- a/include/vendor.sh
+++ b/include/vendor.sh
@@ -188,7 +188,7 @@ fetch()
[ -f "$_cdp" ] || _cdp="$cbdir/$_cdp"; :
[ -f "$_cdp" ] && dl="$_cdp"; :
- dl="${dl_bkup##*../}"
+ dl_bkup="${dl_bkup##*../}"
_cdp="$dl_bkup"
[ -f "$_cdp" ] || _cdp="$cbdir/$_cdp"; :
[ -f "$_cdp" ] && dl_bkup="$_cdp"; :