Changeset 7949a91
- Timestamp:
- Jan 8, 2011, 7:00:30 PM (14 years ago)
- Branches:
- clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- a4b40f4
- Parents:
- 500e787
- Location:
- BOOK
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/final-system/multilib/multiarch_wrapper.xml
r500e787 r7949a91 62 62 execvp(filename, argv); 63 63 perror(filename); 64 goto end;65 64 } else if (pid < 0) { 66 goto end_error;65 perror(argv[0]); 67 66 } else { 68 67 if (waitpid(pid, &status, 0) != pid) { 69 68 status = EXIT_FAILURE; 70 goto end_error; 69 perror(argv[0]); 70 } else { 71 status = WEXITSTATUS(status); 71 72 } 72 status = WEXITSTATUS(status);73 73 } 74 goto end;75 74 76 end_error:77 perror(argv[0]);78 end:79 75 free(filename); 80 76 -
BOOK/introduction/common/changelog.xml
r500e787 r7949a91 41 41 <para>January 8, 2011</para> 42 42 <itemizedlist> 43 <listitem> 44 <para>[jciccone] - Updated the Multiarch Wrapper based on changes 45 from DX-MON.</para> 46 </listitem> 43 47 <listitem> 44 48 <para>[jciccone] - Updated Bootscripts to 1.2-pre11.</para>
Note:
See TracChangeset
for help on using the changeset viewer.