summaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2002-10-08 19:45:17 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2002-10-08 19:45:17 +0000
commit4b5ee00b59a598c4fa46821e3fd78ec81c0ca070 (patch)
treebfa71dcb5da270d0f17a9faf49ee9b0e6851e502 /gcc/gcc.c
parent812f3fa90c4630bf0039b56f457951cf08978ed6 (diff)
downloadgcc-4b5ee00b59a598c4fa46821e3fd78ec81c0ca070.tar.gz
* system.h (GCCBUGURL): Delete.
* version.c (bug_report_url): New. Add commentary about modifying both these strings in modified distributions. * version.h: Declare bug_report_url. * diagnostic.c, gcc.c, gcov.c, java/gjavah.c, java/jcf-dump.c, java/jv-scan.c: Globally replace GCCBUGURL with bug_report_url. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57940 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 167dde77c39..df694309d64 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -2925,7 +2925,7 @@ Internal error: %s (program %s)\n\
Please submit a full bug report.\n\
See %s for instructions.",
strsignal (WTERMSIG (status)), commands[j].prog,
- GCCBUGURL);
+ bug_report_url);
signal_count++;
ret_code = -1;
}
@@ -6111,7 +6111,7 @@ main (argc, argv)
if (! verbose_flag)
{
printf (_("\nFor bug reporting instructions, please see:\n"));
- printf ("%s.\n", GCCBUGURL);
+ printf ("%s.\n", bug_report_url);
return (0);
}
@@ -6286,7 +6286,7 @@ main (argc, argv)
if (print_help_list)
{
printf (("\nFor bug reporting instructions, please see:\n"));
- printf ("%s\n", GCCBUGURL);
+ printf ("%s\n", bug_report_url);
}
return (signal_count != 0 ? 2