summaryrefslogtreecommitdiff
path: root/src/actions.c
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2016-06-12 06:57:06 +0200
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2016-06-12 06:57:06 +0200
commitcaf8e163e4f11ac589d8671552ceae90893eae7d (patch)
tree56867d7d3cdb26a03ce8b333ed33993bcdc818e0 /src/actions.c
parent492a06066ae5cca4054dbf3241863fb842eddcd1 (diff)
downloadratpoison-caf8e163e4f11ac589d8671552ceae90893eae7d.zip
Stop embedding build time, it makes builds less reproducible.
Diffstat (limited to 'src/actions.c')
-rw-r--r--src/actions.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actions.c b/src/actions.c
index c0fc569..8c55c04 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1504,7 +1504,7 @@ cmd_kill (int interactive UNUSED, struct cmdarg **args UNUSED)
cmdret *
cmd_version (int interactive UNUSED, struct cmdarg **args UNUSED)
{
- return cmdret_new (RET_SUCCESS, "%s", PACKAGE " " VERSION " (built " __DATE__ " " __TIME__ ")");
+ return cmdret_new (RET_SUCCESS, "%s", PACKAGE " " VERSION);
}
static char *
@@ -3345,7 +3345,7 @@ cmd_license (int interactive UNUSED, struct cmdarg **args UNUSED)
int y = 10;
int i;
int max_width = 0;
- char *license_text[] = { PACKAGE " " VERSION, "(built " __DATE__ " " __TIME__ ")",
+ char *license_text[] = { PACKAGE " " VERSION,
"",
"Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts",
"",