From owner-svn-src-all@FreeBSD.ORG Fri Oct 25 18:43:54 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id A3EF8126; Fri, 25 Oct 2013 18:43:54 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7554D29D2; Fri, 25 Oct 2013 18:43:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9PIhsLY083933; Fri, 25 Oct 2013 18:43:54 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9PIhsGh083931; Fri, 25 Oct 2013 18:43:54 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310251843.r9PIhsGh083931@svn.freebsd.org> From: Colin Percival Date: Fri, 25 Oct 2013 18:43:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r257129 - head/contrib/subversion/subversion/libsvn_subr X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Oct 2013 18:43:54 -0000 Author: cperciva Date: Fri Oct 25 18:43:53 2013 New Revision: 257129 URL: http://svnweb.freebsd.org/changeset/base/257129 Log: Remove time and date stamps from svn* binaries, in order to make the builds reproducible. Reviewed by: peter MFC after: 3 days Modified: head/contrib/subversion/subversion/libsvn_subr/opt.c head/contrib/subversion/subversion/libsvn_subr/version.c Modified: head/contrib/subversion/subversion/libsvn_subr/opt.c ============================================================================== --- head/contrib/subversion/subversion/libsvn_subr/opt.c Fri Oct 25 18:39:01 2013 (r257128) +++ head/contrib/subversion/subversion/libsvn_subr/opt.c Fri Oct 25 18:43:53 2013 (r257129) @@ -1115,10 +1115,8 @@ svn_opt__print_version_info(const char * return svn_cmdline_printf(pool, "%s\n", SVN_VER_NUMBER); SVN_ERR(svn_cmdline_printf(pool, _("%s, version %s\n" - " compiled %s, %s on %s\n\n"), + " compiled on %s\n\n"), pgm_name, SVN_VERSION, - svn_version_ext_build_date(info), - svn_version_ext_build_time(info), svn_version_ext_build_host(info))); SVN_ERR(svn_cmdline_printf(pool, "%s\n", svn_version_ext_copyright(info))); Modified: head/contrib/subversion/subversion/libsvn_subr/version.c ============================================================================== --- head/contrib/subversion/subversion/libsvn_subr/version.c Fri Oct 25 18:39:01 2013 (r257128) +++ head/contrib/subversion/subversion/libsvn_subr/version.c Fri Oct 25 18:43:53 2013 (r257129) @@ -125,8 +125,8 @@ svn_version_extended(svn_boolean_t verbo { svn_version_extended_t *info = apr_pcalloc(pool, sizeof(*info)); - info->build_date = __DATE__; - info->build_time = __TIME__; + info->build_date = NULL; + info->build_time = NULL; info->build_host = SVN_BUILD_HOST; info->copyright = apr_pstrdup (pool, _("Copyright (C) 2013 The Apache Software Foundation.\n"