commit: 4db515ff005a0107d4f25d6d6889d05a920ac435
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 24 01:01:53 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> 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 "<unknown>"
#endif
- printf("portage-utils-%s: compiled on %s\n"
- "vcs id: %s\n"
+ printf("portage-utils-%s: %s\n"
"%s written for Gentoo by <solar and vapier @ gentoo.org>\n",
- VERSION, __DATE__, VCSID, argv0);
+ VERSION, VCSID, argv0);
exit(EXIT_SUCCESS);
}