Changeset 2812


Ignore:
Timestamp:
Sep 10, 2006, 1:11:41 AM (19 years ago)
Author:
bird
Message:

Exit with 8 instead of -1 on weakld failures. Fixes #123.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/libc-0.6/src/emx/ChangeLog.LIBC

    r2810 r2812  
    22
    33TODO: open replace on RAMFS fails with error 32!
     4
     52006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     6    - emxomfld:
     7        o #123: Exit with 8 instead of -1 on weakld failures.
    48
    592006-09-08: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • branches/libc-0.6/src/emx/src/emxomf/emxomfld.c

    r2593 r2812  
    11411141      /* last words */
    11421142      if (rc)
    1143         fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1143        {
     1144          fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1145          rc = 8;
     1146        }
    11441147    }
    11451148  else
    11461149    {
     1150      fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11471151      rc = 8;
    1148       fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11491152    }
    11501153
  • trunk/emx/ChangeLog.emx

    r2694 r2812  
    11/* $Id$ */
     2
     32006-09-09: knut st. osmundsen <bird-gccos2-spam@anduin.net>
     4    - emxomfld:
     5        o #123: Exit with 8 instead of -1 on weakld failures.
    26
    372006-04-11: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • trunk/emx/src/emxomf/emxomfld.c

    r2693 r2812  
    11521152      /* last words */
    11531153      if (rc)
    1154         fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1154        {
     1155          fprintf (stderr, "emxomfld: weak prelinker failed. (rc=%d)\n", rc);
     1156          rc = 8;
     1157        }
    11551158    }
    11561159  else
    11571160    {
     1161      fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11581162      rc = 8;
    1159       fprintf (stderr, "emxomfld: failed to create weak prelinker.\n");
    11601163    }
    11611164
Note: See TracChangeset for help on using the changeset viewer.