mstflint/Remove-date-time-info-from-build.patch
Nicolas Morey-Chaisemartin eef9eba103 Accepting request 728694 from home:NMoreyChaisemartin:branches:science:HPC
- Update to v4.11.0-5 (bsc#1136328)
  - Build related changes
    - Disabled -Werror compiler flag
    - Added the option to choose local system libraries if available in the machine
    - Enhanced python 3 compatibility
    - Removed python shebangs from the scripts
    - Fixed multiple rpmbuild issues
    - Added --enable-all-static configure flag that allows compilation of static executables, when the the option is supported by the compiler
    - All python scripts were aligned to unix encoding
    - Fixed multiple builds and compilation issues
  - mstprivhost tool
    - Added mstprivhost tool to set host privilege configurations
  - mstflint tool
    - Added missing Rom info attribute for legacy FW qq query
    - Fixed query timeout when device is locked
    - Renamed former --next_boot_fw_ver to --flashed_version flag. This flag queries the flashed version.
    - Note that the previous flag is supported to keep compatibility.
    - Fixed an issue with FW upgrade on ConnectX-5 EN
  - mstregdup tool
    - Fixed segfault
  - mstconfig
    - Added new params:
  - mstfwtrace
    - Added fwtracer: in this release, this tool supports secure FW flow only
  - libibmad
    - Added support for libibmad 12 in addition to 5
  - Python tools
    - Fixed Python wrapper to work properly in multiple OSes and multiple Python versions
  - Added adb generic tools
    - Added mstreg tool: To enable this option please use "--enable-adb-genaric-tools" flag

OBS-URL: https://build.opensuse.org/request/show/728694
OBS-URL: https://build.opensuse.org/package/show/science:HPC/mstflint?expand=0&rev=35
2019-09-06 07:06:57 +00:00

25 lines
992 B
Diff

commit 5f1b8c66deb4f825bc626a2cc8bf1251841bf9ac
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>
diff --git common/tools_version.h common/tools_version.h
index 2b6f16bf874e..5dc0239f31d6 100644
--- common/tools_version.h
+++ common/tools_version.h
@@ -75,10 +75,8 @@ int get_version_string(char *buf, int buf_size, const char *exe_name, const char
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",
+ len += snprintf(buf + len, buf_size - len, "%s. Git SHA Hash: %s",
MSTFLINT_VERSION_STR,
- __DATE__,
- __TIME__,
TOOLS_GIT_SHA);
return len;
}