Ignore:
Timestamp:
Jan 24, 2008, 6:04:44 PM (16 years ago)
Author:
Bruno Cornec
Message:

fix an issue in the kill procedure

File:
1 edited

Legend:

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

    r1854 r1878  
    817817        }
    818818#else
     819#ifdef __IA64__
     820        strcpy(bootdev, call_program_and_get_last_line_of_output
     821               ("mount | grep ' /boot/efi ' | head -1 | cut -d' ' -f1 | sed 's/[0-9].*//'"));
     822#else
    819823        strcpy(bootdev, call_program_and_get_last_line_of_output
    820824               ("mount | grep ' /boot ' | head -1 | cut -d' ' -f1 | sed 's/[0-9].*//'"));
     825#endif
    821826        if (strstr(bootdev, "/dev/cciss/")) {
     827#ifdef __IA64__
     828            strcpy(bootdev, call_program_and_get_last_line_of_output
     829                   ("mount | grep ' /boot/efi ' | head -1 | cut -d' ' -f1 | cut -dp -f1"));
     830#else
    822831            strcpy(bootdev, call_program_and_get_last_line_of_output
    823832                   ("mount | grep ' /boot ' | head -1 | cut -d' ' -f1 | cut -dp -f1"));
     833#endif
    824834        }
    825835        if (!bootdev[0]) {
Note: See TracChangeset for help on using the changeset viewer.