summaryrefslogtreecommitdiff
path: root/scite/debian/patches/0003-reproducible_build.patch
blob: ae3715f68a431b6ca2147b8417a939f476199269 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: Antonio Valentino <antonio.valentino@tiscali.it>
Date: Sat, 14 Apr 2018 17:39:34 +0000
Subject: Allow reproducible build

===================================================================
---
 scite/src/Credits.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/scite/src/Credits.cxx
+++ b/scite/src/Credits.cxx
@@ -615,7 +615,7 @@
 		}
 		AddStyledText(wsci, GetTranslationToAbout("Version"), trsSty);
 		AddStyledText(wsci, sVersion, 1);
-		AddStyledText(wsci, "    " __DATE__ " " __TIME__ "\n", 1);
+		AddStyledText(wsci, "    " BUILD_DATE "\n", 1);
 		SetAboutStyle(wsci, 2, ColourRGB(0, 0, 0));
 		wsci.StyleSetItalic(2, true);
 		AddStyledText(wsci, GetTranslationToAbout("by"), trsSty);
bgstack15