2013-04-07 21:04:38 +00:00
|
|
|
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
|
2012-01-03 15:19:50 +00:00
|
|
|
===================================================================
|
2013-04-07 21:04:38 +00:00
|
|
|
--- 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
|
2012-08-23 14:18:57 +00:00
|
|
|
@@ -1084,9 +1084,8 @@ svn_opt__print_version_info(const char *
|
2010-09-27 13:53:08 +00:00
|
|
|
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));
|
2011-10-23 19:17:14 +00:00
|
|
|
SVN_ERR(svn_cmdline_fputs(
|
2013-04-07 21:04:38 +00:00
|
|
|
_("Copyright (C) 2013 The Apache Software Foundation.\n"
|
2011-10-23 19:17:14 +00:00
|
|
|
"This software consists of contributions made by many "
|