From owner-svn-src-all@FreeBSD.ORG Mon Oct 28 22:49:12 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 1B3CE570; Mon, 28 Oct 2013 22:49:12 +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 E249525A0; Mon, 28 Oct 2013 22:49:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9SMnBUB071081; Mon, 28 Oct 2013 22:49:11 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9SMnB12071079; Mon, 28 Oct 2013 22:49:11 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310282249.r9SMnB12071079@svn.freebsd.org> From: Colin Percival Date: Mon, 28 Oct 2013 22:49:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r257286 - stable/10/contrib/subversion/subversion/libsvn_subr X-SVN-Group: stable-10 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: Mon, 28 Oct 2013 22:49:12 -0000 Author: cperciva Date: Mon Oct 28 22:49:11 2013 New Revision: 257286 URL: http://svnweb.freebsd.org/changeset/base/257286 Log: MFC r257129: Remove time and date stamps from svn* binaries, in order to make the builds reproducible. Approved by: re (glebius) Modified: stable/10/contrib/subversion/subversion/libsvn_subr/opt.c stable/10/contrib/subversion/subversion/libsvn_subr/version.c Directory Properties: stable/10/contrib/subversion/ (props changed) Modified: stable/10/contrib/subversion/subversion/libsvn_subr/opt.c ============================================================================== --- stable/10/contrib/subversion/subversion/libsvn_subr/opt.c Mon Oct 28 22:41:36 2013 (r257285) +++ stable/10/contrib/subversion/subversion/libsvn_subr/opt.c Mon Oct 28 22:49:11 2013 (r257286) @@ -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: stable/10/contrib/subversion/subversion/libsvn_subr/version.c ============================================================================== --- stable/10/contrib/subversion/subversion/libsvn_subr/version.c Mon Oct 28 22:41:36 2013 (r257285) +++ stable/10/contrib/subversion/subversion/libsvn_subr/version.c Mon Oct 28 22:49:11 2013 (r257286) @@ -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"