2011-04-09 01:50:15 +00:00
|
|
|
From: Jan Engelhardt <jengelh@medozas.de>
|
|
|
|
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.
|
|
|
|
---
|
2024-05-29 19:31:17 +00:00
|
|
|
schism/version.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2011-04-09 01:50:15 +00:00
|
|
|
|
2025-02-05 20:51:42 +01:00
|
|
|
Index: schismtracker-20250202/schism/version.c
|
2011-04-09 01:50:15 +00:00
|
|
|
===================================================================
|
2025-02-05 20:51:42 +01:00
|
|
|
--- 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
|
2024-05-29 19:31:17 +00:00
|
|
|
#else
|
2025-02-05 20:51:42 +01:00
|
|
|
-# define TOP_BANNER_NORMAL "Schism Tracker built " __DATE__ " " __TIME__
|
|
|
|
+# define TOP_BANNER_NORMAL "Schism Tracker built <>"
|
2024-05-29 19:31:17 +00:00
|
|
|
#endif
|
|
|
|
;
|
2018-02-07 19:31:04 +00:00
|
|
|
|