Changeset 577 in kBuild for trunk/src/gmake/main.c
- Timestamp:
- Nov 23, 2006 10:09:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/main.c
r576 r577 2478 2478 fputs (_(*cpp), usageto); 2479 2479 2480 #ifdef KMK 2481 if (!remote_description || *remote_description == '\0') 2482 printf (_("\nThis program is built for %s/%s/%s [" __DATE__ " " __TIME__ "]\n"), 2483 BUILD_PLATFORM, BUILD_PLATFORM_ARCH, BUILD_PLATFORM_CPU, remote_description); 2484 else 2485 printf (_("\nThis program is built for %s/%s/%s (%s) [" __DATE__ " " __TIME__ "]\n"), 2486 BUILD_PLATFORM, BUILD_PLATFORM_ARCH, BUILD_PLATFORM_CPU, remote_description); 2487 #else 2480 2488 if (!remote_description || *remote_description == '\0') 2481 2489 fprintf (usageto, _("\nThis program built for %s\n"), make_host); … … 2483 2491 fprintf (usageto, _("\nThis program built for %s (%s)\n"), 2484 2492 make_host, remote_description); 2493 #endif 2485 2494 2486 2495 fprintf (usageto, _("Report bugs to <[email protected]>\n")); … … 3062 3071 #ifdef KMK 3063 3072 if (!remote_description || *remote_description == '\0') 3064 printf (_("\n%sThis program built for %s [" __DATE__ " " __TIME__ "]\n"), precede, make_host); 3073 printf (_("\n%sThis program is built for %s/%s/%s [" __DATE__ " " __TIME__ "]\n"), 3074 precede, BUILD_PLATFORM, BUILD_PLATFORM_ARCH, BUILD_PLATFORM_CPU, remote_description); 3065 3075 else 3066 printf (_("\n%sThis program built for%s (%s) [" __DATE__ " " __TIME__ "]\n"),3067 precede, make_host, remote_description);3076 printf (_("\n%sThis program is built for %s/%s/%s (%s) [" __DATE__ " " __TIME__ "]\n"), 3077 precede, BUILD_PLATFORM, BUILD_PLATFORM_ARCH, BUILD_PLATFORM_CPU, remote_description); 3068 3078 #else 3069 3079 if (!remote_description || *remote_description == '\0')
Note:
See TracChangeset
for help on using the changeset viewer.