File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1031,10 +1031,10 @@ make_overisofs() {
10311031
10321032# Build ISO
10331033make_iso () {
1034- local _iso_efi_boot_args=" "
1034+ local _iso_efi_boot_args=()
10351035 # If exists, add an EFI "El Torito" boot image (FAT filesystem) to ISO-9660 image.
10361036 if [[ -f " ${build_dir} /efiboot.img" ]]; then
1037- _iso_efi_boot_args=" -append_partition 2 C12A7328-F81F-11D2-BA4B-00A0C93EC93B ${build_dir} /efiboot.img -appended_part_as_gpt -eltorito-alt-boot -e --interval:appended_partition_2:all:: -no-emul-boot -isohybrid-gpt-basdat"
1037+ _iso_efi_boot_args=( -append_partition 2 C12A7328-F81F-11D2-BA4B-00A0C93EC93B ${build_dir} /efiboot.img -appended_part_as_gpt -eltorito-alt-boot -e --interval:appended_partition_2:all:: -no-emul-boot -isohybrid-gpt-basdat)
10381038 fi
10391039
10401040 mkdir -p -- " ${out_dir} "
@@ -1053,7 +1053,7 @@ make_iso() {
10531053 -eltorito-catalog syslinux/boot.cat \
10541054 -no-emul-boot -boot-load-size 4 -boot-info-table \
10551055 -isohybrid-mbr ${build_dir} /iso/syslinux/isohdpfx.bin \
1056- ${_iso_efi_boot_args} \
1056+ " ${_iso_efi_boot_args[@]} " \
10571057 -output " ${out_dir} /${iso_filename} " \
10581058 " ${build_dir} /iso/"
10591059 _mkchecksum " ${out_dir} /${iso_filename} "
You can’t perform that action at this time.
0 commit comments