Ignore:
Timestamp:
Feb 9, 2016, 2:41:11 AM (8 years ago)
Author:
Bruno Cornec
Message:
  • Creates TMPDIR if it doesn't exist for mindi and analyze-my-lvm
  • Use syslinux dir systematically for boot env whatever the boot loader of this family as it works for all.
  • Improve seed for deps computation in mindi by global sorting
File:
1 edited

Legend:

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

    r3494 r3499  
    15671567    char *sz_blank_disk = NULL;
    15681568    char *fnam = NULL;
    1569     char *tmp3 = NULL;
    15701569    char *isofs_cmd = NULL;
    15711570    char *full_isofs_cmd = NULL;
     
    15791578    assert_string_is_neither_NULL_nor_zerolength(destfile);
    15801579
    1581     /* Copy the files needed by isolinux in the right dir */
    1582     mr_asprintf(tmp, "%s/isolinux.bin", bkpinfo->scratchdir);
    1583     mr_asprintf(tmp2, "%s/isolinux.bin", bkpinfo->tmpdir);
    1584     if (does_file_exist(tmp)) {
    1585         mr_asprintf(tmp3, "cp -f %s %s", tmp, tmp2);
    1586         paranoid_system(tmp3);
    1587         mr_free(tmp3);
    1588     }
    1589     if (!does_file_exist(tmp) && does_file_exist(tmp2)) {
    1590         mr_asprintf(tmp3, "cp -f %s %s", tmp2, tmp);
    1591         paranoid_system(tmp3);
    1592         mr_free(tmp3);
    1593     }
    1594     mr_free(tmp);
    1595     mr_free(tmp2);
    1596     mr_free(tmp3);
    15971580    if (bkpinfo->backup_media_type == iso && bkpinfo->manual_cd_tray) {
    15981581        popup_and_OK("Please insert new media and press Enter.");
Note: See TracChangeset for help on using the changeset viewer.