2018-10-25 12:49:12 +02:00
|
|
|
commit 206dbe6dbb96cb8fc1b6ee8c5ffe52496b30762b
|
2018-06-25 08:25:36 +02:00
|
|
|
Author: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
|
|
|
|
Date: Thu May 18 07:48:13 2017 +0200
|
|
|
|
|
|
|
|
Remove date/time info from build
|
|
|
|
|
|
|
|
Signed-off-by: Nicolas Morey-Chaisemartin <NMoreyChaisemartin@suse.com>
|
|
|
|
|
2017-05-10 20:50:21 +02:00
|
|
|
diff --git common/tools_version.h common/tools_version.h
|
2018-10-25 12:49:12 +02:00
|
|
|
index 4d31d97daf18..0c5da29bf700 100644
|
2017-05-10 20:50:21 +02:00
|
|
|
--- common/tools_version.h
|
|
|
|
+++ common/tools_version.h
|
2018-10-25 12:49:12 +02:00
|
|
|
@@ -71,10 +71,8 @@ int get_version_string(char *buf, int buf_size, const char *exe_name, const char
|
2016-07-18 21:24:12 +02:00
|
|
|
len = snprintf(buf, buf_size, "%s %s, ", exe_name, tool_version);
|
|
|
|
}
|
|
|
|
// cut out first and last "$" from the SVN version string:
|
|
|
|
- len += snprintf(buf + len, buf_size - len, "%s, built on %s, %s. Git SHA Hash: %s",
|
2018-10-25 12:49:12 +02:00
|
|
|
+ len += snprintf(buf + len, buf_size - len, "%s. Git SHA Hash: %s",
|
|
|
|
MFT_VERSION_STR,
|
|
|
|
- __DATE__,
|
|
|
|
- __TIME__,
|
|
|
|
TOOLS_GIT_SHA);
|
2016-07-18 21:24:12 +02:00
|
|
|
return len;
|
|
|
|
}
|