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 diff --git a/gcc/gcov.c b/gcc/gcov.c index 2360b0a25d4..94f9baad40b 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -349,7 +349,7 @@ print_usage (error_p) fnotice (file, " -o, --object-directory DIR|FILE Search for object files in DIR or called FILE\n"); fnotice (file, " -p, --preserve-paths Preserve all pathname components\n"); fnotice (file, "\nFor bug reporting instructions, please see:\n%s.\n", - GCCBUGURL); + bug_report_url); exit (status); }