2021-04-09 07:36:52 +00:00
|
|
|
commit cba2038916c5862ea38862b60939157f8a986226
|
2018-06-25 06:25:36 +00: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 18:50:21 +00:00
|
|
|
diff --git common/tools_version.h common/tools_version.h
|
2021-04-09 07:36:52 +00:00
|
|
|
index 32fe3c7e0684..7ce75ce3cdd5 100644
|
2017-05-10 18:50:21 +00:00
|
|
|
--- common/tools_version.h
|
|
|
|
+++ common/tools_version.h
|
2021-04-09 07:36:52 +00:00
|
|
|
@@ -74,10 +74,8 @@ int get_version_string(char *buf, int buf_size, const char *exe_name, const char
|
2016-07-18 19:24:12 +00: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 10:49:12 +00:00
|
|
|
+ len += snprintf(buf + len, buf_size - len, "%s. Git SHA Hash: %s",
|
2019-02-14 06:54:30 +00:00
|
|
|
MSTFLINT_VERSION_STR,
|
2018-10-25 10:49:12 +00:00
|
|
|
- __DATE__,
|
|
|
|
- __TIME__,
|
|
|
|
TOOLS_GIT_SHA);
|
2016-07-18 19:24:12 +00:00
|
|
|
return len;
|
|
|
|
}
|