Andreas Stieger
cfba1fbfb2
update to 1.7.9 [bnc#813913] OBS-URL: https://build.opensuse.org/request/show/163080 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm:svn/subversion?expand=0&rev=112
28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
From: Andreas Stieger <andreas.stieger@gmx.de>
|
|
Date: 2013-04-07 21:09:15 +0100
|
|
Subject: remove build date and time from binary
|
|
Upstream: never
|
|
|
|
Prevent unneccessary rebuilds by removing date and time macros.
|
|
|
|
---
|
|
subversion/libsvn_subr/opt.c | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
Index: subversion-1.7.9/subversion/libsvn_subr/opt.c
|
|
===================================================================
|
|
--- subversion-1.7.9.orig/subversion/libsvn_subr/opt.c 2013-01-04 03:05:28.000000000 +0000
|
|
+++ subversion-1.7.9/subversion/libsvn_subr/opt.c 2013-04-07 21:09:14.000000000 +0100
|
|
@@ -1084,9 +1084,8 @@ svn_opt__print_version_info(const char *
|
|
if (quiet)
|
|
return svn_cmdline_printf(pool, "%s\n", SVN_VER_NUMBER);
|
|
|
|
- SVN_ERR(svn_cmdline_printf(pool, _("%s, version %s\n"
|
|
- " compiled %s, %s\n\n"), pgm_name,
|
|
- SVN_VERSION, __DATE__, __TIME__));
|
|
+ SVN_ERR(svn_cmdline_printf(pool, _("%s, version %s\n\n"), pgm_name,
|
|
+ SVN_VERSION));
|
|
SVN_ERR(svn_cmdline_fputs(
|
|
_("Copyright (C) 2013 The Apache Software Foundation.\n"
|
|
"This software consists of contributions made by many "
|