This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug other/58197] subversion-1.8.x breaks script contrib/gcc_update


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58197

--- Comment #1 from Winfried Magerl <winfried.magerl@t-online.de> ---
checked some ancient versions of subversion and there was no
format-change to URL: since subversion-1.0.0 (2004):

./subversion-1.0.0/subversion/clients/cmdline/info-cmd.c:      printf ("URL:
%s\n", name_stdout);
./subversion-1.3.0/subversion/clients/cmdline/info-cmd.c:    SVN_ERR
(svn_cmdline_printf (pool, _("URL: %s\n"), info->URL));
./subversion-1.4.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("URL: %s\n"), info->URL));
./subversion-1.5.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("URL: %s\n"), info->URL));
./subversion-1.6.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("URL: %s\n"), info->URL));
./subversion-1.7.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("URL: %s\n"), info->URL));
./subversion-1.8.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("URL: %s\n"), info->URL));
./subversion-1.8.0/subversion/svn/info-cmd.c:   
SVN_ERR(svn_cmdline_printf(pool, _("Relative URL: ^/%s\n"),

Changing sed-expression from /URL:/ to /^URL:/ is the obviously correct fix.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]