From: Jan Engelhardt Upstream: never Replace __DATE__ and __TIME__ with static text. Note: rpmlint will still complain when the static date that was encoded happens to be the current day. That is ok, since rpmlint uses just a heuristic - excessive rebuilds should not actually be happening. --- schism/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: schismtracker-20250202/schism/version.c =================================================================== --- schismtracker-20250202.orig/schism/version.c +++ schismtracker-20250202/schism/version.c @@ -54,7 +54,7 @@ Information at our disposal: #if !defined(EMPTY_VERSION) && defined(VERSION) # define TOP_BANNER_NORMAL "Schism Tracker " VERSION #else -# define TOP_BANNER_NORMAL "Schism Tracker built " __DATE__ " " __TIME__ +# define TOP_BANNER_NORMAL "Schism Tracker built <>" #endif ;