mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
xbmk: don't use backticks for command substitution
the newer way handles escaped characters better, and it can be nested more easily. it's also more readable. personally, i prefer the old way, because it's more minimalist, but it occurs to me that a lot of people nowadays don't know about backticks, but they do know of the modern way. to make the code more readable, i have modernised it. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -8,8 +8,8 @@ seavgabiosrom="elf/seabios/default/default/libgfxinit/vgabios.bin"
|
||||
pv="payload_seabios payload_memtest payload_grub payload_grubsea"
|
||||
v="initmode ubootelf grub_scan_disk uboot_config grubtree grubelf pname"
|
||||
v="$v displaymode tmprom newrom payload_uboot"
|
||||
eval `setvars "n" $pv`
|
||||
eval `setvars "" $v`
|
||||
eval "$(setvars "n" $pv)"
|
||||
eval "$(setvars "" $v)"
|
||||
|
||||
premake="corebootpremake"
|
||||
mkhelper="coreboot_pad_one_byte"
|
||||
|
||||
Reference in New Issue
Block a user