From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A53AF138A87 for ; Tue, 24 Feb 2015 01:26:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72271E08E8; Tue, 24 Feb 2015 01:26:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AC3CE08E8 for ; Tue, 24 Feb 2015 01:26:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30A9134096E for ; Tue, 24 Feb 2015 01:26:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BBD0126C0 for ; Tue, 24 Feb 2015 01:26:05 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1424739713.4db515ff005a0107d4f25d6d6889d05a920ac435.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: main.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 4db515ff005a0107d4f25d6d6889d05a920ac435 X-VCS-Branch: master Date: Tue, 24 Feb 2015 01:26:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a2c83df9-19b5-4864-9ba9-07e79eefb640 X-Archives-Hash: dc5d9018d2c3fbe91e6ecab0205a778c commit: 4db515ff005a0107d4f25d6d6889d05a920ac435 Author: Mike Frysinger gentoo org> AuthorDate: Tue Feb 24 01:01:53 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Feb 24 01:01:53 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=4db515ff main: drop __DATE__ from version info to let ccache work better --- main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 1ee8816..51c48aa 100644 --- a/main.c +++ b/main.c @@ -165,10 +165,9 @@ static void version_barf(void) #ifndef VCSID # define VCSID "" #endif - printf("portage-utils-%s: compiled on %s\n" - "vcs id: %s\n" + printf("portage-utils-%s: %s\n" "%s written for Gentoo by \n", - VERSION, __DATE__, VCSID, argv0); + VERSION, VCSID, argv0); exit(EXIT_SUCCESS); }