diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 22:02:27 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-11-05 22:02:27 (EST) |
commit | 0a3c0421b4b110906a88e1ff9967fffb8a968cd7 (patch) | |
tree | c43798bf4e690cc8e52ac216405ea4b596b9f7d1 /resources/scripts/helpers/build | |
parent | 97da098c9ef480a3ab75c48a94df63e45dafe3b7 (diff) | |
download | libreboot-0a3c0421b4b110906a88e1ff9967fffb8a968cd7.zip libreboot-0a3c0421b4b110906a88e1ff9967fffb8a968cd7.tar.gz libreboot-0a3c0421b4b110906a88e1ff9967fffb8a968cd7.tar.bz2 |
build/roms/withgrub_helper: use quotes where needed
Diffstat (limited to 'resources/scripts/helpers/build')
-rwxr-xr-x | resources/scripts/helpers/build/roms/withgrub_helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/roms/withgrub_helper b/resources/scripts/helpers/build/roms/withgrub_helper index 07dd5c2..c8bcd9c 100755 --- a/resources/scripts/helpers/build/roms/withgrub_helper +++ b/resources/scripts/helpers/build/roms/withgrub_helper @@ -149,6 +149,6 @@ rm -f "lbversion" cd "../" # create ROM image layout to allow flashing specific regions only -./coreboot/util/ifdtool/ifdtool -f bin/grub/${boardtarget}/rom.layout $(find bin/grub/${boardtarget} -type f -name "*.rom" -print -quit) +./coreboot/util/ifdtool/ifdtool -f bin/grub/"${boardtarget}"/rom.layout "$(find bin/grub/"${boardtarget}" -type f -name "*.rom" -print -quit)" printf "\n\n" |