Changeset 7949a91


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.

Location:
BOOK
Files:
2 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
  • BOOK/introduction/common/changelog.xml

    r500e787 r7949a91  
    4141      <para>January 8, 2011</para>
    4242      <itemizedlist>
     43        <listitem>
     44          <para>[jciccone] - Updated the Multiarch Wrapper based on changes
     45          from DX-MON.</para>
     46        </listitem>
    4347        <listitem>
    4448          <para>[jciccone] - Updated Bootscripts to 1.2-pre11.</para>
Note: See TracChangeset for help on using the changeset viewer.