Bugfix: The arguments to the 'tr' command must be quoted.
This commit is contained in:
parent
eed8d293b1
commit
2bfdb3cb44
|
@ -187,7 +187,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
|
|||
Chroot chroot "parted -s ${FREELO} set 1 lba off" || true
|
||||
|
||||
if [ "${LB_BOOTLOADER_BIOS}" = "syslinux" ]; then
|
||||
dd if=chroot/usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])/mbr.bin of=${FREELO} bs=440 count=1
|
||||
dd if=chroot/usr/lib/$(echo ${_BOOTLOADER} | tr '[a-z]' '[A-Z]')/mbr.bin of=${FREELO} bs=440 count=1
|
||||
fi
|
||||
;;
|
||||
|
||||
|
@ -206,7 +206,7 @@ case "${LB_BUILD_WITH_CHROOT}" in
|
|||
parted -s "${FREELO}" set 1 lba off || true
|
||||
|
||||
if [ "${LB_BOOTLOADER_BIOS}" = "syslinux" ]; then
|
||||
dd if=/usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])/mbr.bin of=${FREELO} bs=440 count=1
|
||||
dd if=/usr/lib/$(echo ${_BOOTLOADER} | tr '[a-z]' '[A-Z]')/mbr.bin of=${FREELO} bs=440 count=1
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
|
|
@ -93,7 +93,7 @@ else
|
|||
fi
|
||||
|
||||
# Checking depends
|
||||
Check_package chroot /usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z]) ${_BOOTLOADER}
|
||||
Check_package chroot /usr/lib/$(echo ${_BOOTLOADER} | tr '[a-z]' '[A-Z]') ${_BOOTLOADER}
|
||||
Check_package chroot /usr/lib/syslinux syslinux-common
|
||||
Check_package chroot /usr/bin/rsvg-convert librsvg2-bin
|
||||
|
||||
|
|
Loading…
Reference in New Issue