aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-02-20 06:46:42 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-02-20 06:46:42 +0000
commit9f76f909c9a914fe53740ff840dbff65cd35c0d8 (patch)
treec6e523ebac58916a0259e2b00ea8f079653bb343 /gcc/gcc.c
parenta6567a0faaeafd7dc37eb6d52666c12f466c376f (diff)
downloadgcc-9f76f909c9a914fe53740ff840dbff65cd35c0d8.zip
gcc-9f76f909c9a914fe53740ff840dbff65cd35c0d8.tar.gz
gcc-9f76f909c9a914fe53740ff840dbff65cd35c0d8.tar.bz2
gcc.c (process_command): Allow translation of the copyright symbol but not the rest of the copyright message.
gcc/ * gcc.c (process_command): Allow translation of the copyright symbol but not the rest of the copyright message. * gcov.c (print_version): Likewise. Allow translation of the message about warranty. gcc/f/ * Make-lang.in (g77spec.o): Depend on intl.h. * g77spec.c: Include intl.h. (lang_specific_driver): Allow translation of the copyright symbol but not the rest of the copyright message. Allow translation of the message about warranty. From-SVN: r78152
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index ebefeb8..e4cce36 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -3349,8 +3349,8 @@ process_command (int argc, const char *const *argv)
{
/* translate_options () has turned --version into -fversion. */
printf (_("%s (GCC) %s\n"), programname, version_string);
- fputs ("Copyright (C) 2004 Free Software Foundation, Inc.\n",
- stdout);
+ printf ("Copyright %s 2004 Free Software Foundation, Inc.\n",
+ _("(C)"));
fputs (_("This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
stdout);