Ignore:
Timestamp:
Feb 12, 2016, 4:12:26 PM (8 years ago)
Author:
Bruno Cornec
Message:
  • Should fix errors when used with xorriso and UEFI (option efi-boot should have -- in that case not -)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mondo/src/common/libmondo-archive.c

    r3502 r3505  
    17071707        if (find_home_of_exe("xorriso")) {
    17081708            mr_asprintf(isofs_cmd, "%s", MONDO_XORRISO_CMD);
    1709         else if (find_home_of_exe("genisoimage")) {
     1709        } else if (find_home_of_exe("genisoimage")) {
    17101710            mr_asprintf(isofs_cmd, "%s", MONDO_GENISOIMAGE_CMD);
    17111711        } else {
     
    17441744                log_msg(1, "Isolinux");
    17451745                if (bkpinfo->boot_type == UEFI) {
    1746                     mr_asprintf(uefistr, "%s", MONDO_MKISOFS_UEFI);
     1746                    if (strstr(isofs_cmd,"xorriso")) {
     1747                        mr_asprintf(uefistr, "%s", MONDO_XORRISO_UEFI);
     1748                    } else {
     1749                        mr_asprintf(uefistr, "%s", MONDO_MKISOFS_UEFI);
     1750                    }
    17471751                } else {
    17481752                    mr_asprintf(uefistr, " ");
Note: See TracChangeset for help on using the changeset viewer.