From 652f3ba379b7ca9b1d35113b97818475308da25e Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Tue, 20 Jun 2023 01:15:28 +0100 Subject: build/boot/roms: remove wrong parentheses will pass all args as a single arg, which is wrong fix that Signed-off-by: Leah Rowe --- resources/scripts/build/boot/roms | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/build/boot/roms b/resources/scripts/build/boot/roms index 3ad1d174..16ce698a 100755 --- a/resources/scripts/build/boot/roms +++ b/resources/scripts/build/boot/roms @@ -134,7 +134,7 @@ buildrom() { ./blobutil download ${board} || exit 1 if [ -d "resources/coreboot/${board}/" ]; then - ./build boot roms_helper "${board}${opts}" + ./build boot roms_helper ${board}${opts} else printf "\nbuild/roms: target not defined: %s\n" ${board} die "Run: ./build boot roms list" -- cgit v1.2.1