diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 22:12:00 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 22:12:00 (EDT) |
commit | 4b42375113701d661a025d7d8ef70d62b90fb3a6 (patch) | |
tree | 55e2c624030e260826f6e311b05ab6c67c0236b1 /resources/scripts/helpers/build/roms/withgrub_helper | |
parent | d8e0d2fe09a663645cb82178e54169de4029e896 (diff) | |
download | libreboot-4b42375113701d661a025d7d8ef70d62b90fb3a6.zip libreboot-4b42375113701d661a025d7d8ef70d62b90fb3a6.tar.gz libreboot-4b42375113701d661a025d7d8ef70d62b90fb3a6.tar.bz2 |
build/roms/withgrub: don't use ls
Diffstat (limited to 'resources/scripts/helpers/build/roms/withgrub_helper')
-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 05f5bf2..15b127a 100755 --- a/resources/scripts/helpers/build/roms/withgrub_helper +++ b/resources/scripts/helpers/build/roms/withgrub_helper @@ -97,7 +97,7 @@ do fi # Add the correct GRUB configuration file for this image. - for keymap in $(for keymap in ../resources/utilities/grub-assemble/keymap/original/*; do printf "%s\n" "${keymap##*/}"; done) + for keymap in $(for keylayout in ../resources/utilities/grub-assemble/keymap/original/*; do printf "%s\n" "${keylayout##*/}"; done) do # copy the images based on the keymap cp "${1}_${romtype}.rom" "${1}_${keymap}_${romtype}.rom" |