build/boot/roms: fix bad variable assignment

this was an oversight, in a previous commit.
there was a space, between variable name and
the equals sign, and then another space, so it
was trying to *execute* the rom

Signed-off-by: Leah Rowe <leah@libreboot.org>
btrfsvols
Leah Rowe 2023-08-28 13:51:17 +01:00
parent 55be6dda10
commit 6722624dfc
1 changed files with 1 additions and 2 deletions

View File

@ -523,8 +523,7 @@ build_uboot_roms()
y=${uboot_config}
z=${cbfstool}
tmprom="$(mkUbootRom "$x" "fallback/payload" "$y" "$z")"
newrompath= \
"${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom"
newrompath="${romdir}/uboot_payload_${board}_${initmode}_${displaymode}.rom"
[ "${initmode}" = "normal" ] && \
newrompath="${romdir}/uboot_payload_${board}_${initmode}.rom"
moverom "${tmprom}" "${newrompath}" "${romtype}" || \