Changeset 506


Ignore:
Timestamp:
Sep 15, 2006, 8:09:52 AM (19 years ago)
Author:
bird
Message:

kmk version message with correct copyright stuff and build timestamp.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/main.c

    r503 r506  
    29502950     word "Copyright", so it hardly seems worth it.  */
    29512951
     2952#ifdef KMK
     2953  printf ("%skmk - The kBuild Make Program\n\
     2954\n\
     2955%sBased on GNU Make %s:\n\
     2956%s Copyright (C) 2006  Free Software Foundation, Inc.\n\
     2957\n\
     2958%skBuild Modifications:\n\
     2959%s Copyright (C) 2005-2006  Knut St. Osmundsen.\n\
     2960\n\
     2961%skmkbuiltin commands derived from *BSD sources:\n\
     2962%s Copyright (c) 1983 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994\n\
     2963%s  The Regents of the University of California. All rights reserved.\n\
     2964%s Copyright (c) 1998  Todd C. Miller <Todd.Miller@courtesan.com>\n\
     2965%s\n",
     2966          precede, precede, version_string, precede, precede, precede,
     2967          precede, precede, precede, precede, precede);
     2968#else
    29522969  printf ("%sGNU Make %s\n\
    29532970%sCopyright (C) 2006  Free Software Foundation, Inc.\n",
    29542971          precede, version_string, precede);
     2972#endif
    29552973
    29562974  printf (_("%sThis is free software; see the source for copying conditions.\n\
     
    29592977            precede, precede, precede);
    29602978
     2979#ifdef KMK
     2980  if (!remote_description || *remote_description == '\0')
     2981    printf (_("\n%sThis program built for %s [" __DATE__ " " __TIME__ "]\n"), precede, make_host);
     2982  else
     2983    printf (_("\n%sThis program built for %s (%s) [" __DATE__ " " __TIME__ "]\n"),
     2984            precede, make_host, remote_description);
     2985#else
    29612986  if (!remote_description || *remote_description == '\0')
    29622987    printf (_("\n%sThis program built for %s\n"), precede, make_host);
     
    29642989    printf (_("\n%sThis program built for %s (%s)\n"),
    29652990            precede, make_host, remote_description);
     2991#endif
    29662992
    29672993  printed_version = 1;
Note: See TracChangeset for help on using the changeset viewer.