Ignore:
Timestamp:
Jan 8, 2011, 7:00:30 PM (13 years ago)
Author:
Joe Ciccone <jciccone@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
a4b40f4
Parents:
500e787
Message:

Updated the Multiarch Wrapper based on changes from DX-MON.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BOOK/final-system/multilib/multiarch_wrapper.xml

    r500e787 r7949a91  
    6262    execvp(filename, argv);
    6363    perror(filename);
    64     goto end;
    6564  } else if (pid &lt; 0) {
    66     goto end_error;
     65    perror(argv[0]);
    6766  } else {
    6867    if (waitpid(pid, &amp;status, 0) != pid) {
    6968      status = EXIT_FAILURE;
    70       goto end_error;
     69      perror(argv[0]);
     70    } else {
     71      status = WEXITSTATUS(status);
    7172    }
    72     status = WEXITSTATUS(status);
    7373  }
    74   goto end;
    7574
    76 end_error:
    77   perror(argv[0]);
    78 end:
    7975  free(filename);
    8076
Note: See TracChangeset for help on using the changeset viewer.