1 2 3 4 5 6 7 8 9 10 11 12 13
|
Description: Using __DATE__ or __TIME__ breaks reproducible builds.
Origin: upstream, https://github.com/akrennmair/newsbeuter/commit/cd794477f51d5ea40a7b1a163f426d10222db6a7
--- a/src/controller.cpp
+++ b/src/controller.cpp
@@ -965,7 +965,6 @@
struct utsname xuts;
uname(&xuts);
- std::cout << "Compilation date/time: " << __DATE__ << " " << __TIME__ << std::endl;
std::cout << "System: " << xuts.sysname << " " << xuts.release << " (" << xuts.machine << ")" << std::endl;
#if defined(__GNUC__) && defined(__VERSION__)
std::cout << "Compiler: g++ " << __VERSION__ << std::endl;
|