diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-10-01 19:31:06 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-10-01 19:31:06 +0000 |
commit | bfc94743ea0a885386652f34be93bcbc40e12f11 (patch) | |
tree | 0612f98284748121ae81d012932eb59fd30b2ea6 /gas/gasp.c | |
parent | 01b1f5eb29f9190554ec47548be2c46551675854 (diff) | |
download | gdb-bfc94743ea0a885386652f34be93bcbc40e12f11.zip gdb-bfc94743ea0a885386652f34be93bcbc40e12f11.tar.gz gdb-bfc94743ea0a885386652f34be93bcbc40e12f11.tar.bz2 |
* as.c (show_usage): Print bug report address.
(parse_args): Change version printing to match current GNU
standards.
* gasp.c (show_usage): Print bug report address.
(main): Change version printing to match current GNU standards.
Diffstat (limited to 'gas/gasp.c')
-rw-r--r-- | gas/gasp.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -3549,6 +3549,8 @@ Usage: %s \n\ [-Dname=value] create preprocessor variable called name, with value\n\ [-Ipath] add to include path list\n\ [in-file]\n"); + if (status == 0) + printf ("\nReport bugs to bug-gnu-utils@prep.ai.mit.edu\n"); exit (status); } @@ -3634,7 +3636,12 @@ main (argc, argv) show_help (); /*NOTREACHED*/ case 'v': - printf ("GNU %s version %s\n", program_name, program_version); + /* This output is intended to follow the GNU standards document. */ + printf ("GNU assembler pre-processor %s\n", program_version); + printf ("Copyright 1996 Free Software Foundation, Inc.\n"); + printf ("\ +This program is free software; you may redistribute it under the terms of\n\ +the GNU General Public License. This program has absolutely no warranty.\n"); exit (0); /*NOTREACHED*/ case 0: |