On Wed, Feb 08, 2017 at 10:42:58AM +0000, Jonathan Wakely wrote: > On 08/02/17 08:17 +0100, Gerald Pfeifer wrote: > > Index: src/c++11/snprintf_lite.cc > > =================================================================== > > --- src/c++11/snprintf_lite.cc (revision 245267) > > +++ src/c++11/snprintf_lite.cc (working copy) > > @@ -52,7 +52,7 @@ > > const size_t __len = __bufend - __buf + 1; > > > > const char __err[] = "not enough space for format expansion " > > - "(Please submit full bug report at http://gcc.gnu.org/bugs.html):\n > > "; > > + "(Please submit full bug report at http://gcc.gnu.org/bugs/):\n "; > > const size_t __errlen = sizeof(__err) - 1; > > > > char *const __e > > Shouldn't that be https ? :-) > > I'd welcome better suggestions for how to deal with this error > condition (which should never happen) but I can't think of any myself.
ACX_BUGURL([https://gcc.gnu.org/bugs/]) in configure.ac and then use REPORT_BUGS_TO in the Makefile? Note ACX_BUGURL in gcc/configure.ac needs adjustments too. Jakub