aboutsummaryrefslogtreecommitdiff
path: root/contrib/guix/patches/nsis-SConstruct-sde-support.patch
blob: 5edf1b7c8e373ffd61ce1eb2556728c37a277d86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/SConstruct b/SConstruct
index e8252c9..41786f2 100755
--- a/SConstruct
+++ b/SConstruct
@@ -95,8 +95,8 @@ default_doctype = 'html'
 if defenv.WhereIs('hhc', os.environ['PATH']):
 	default_doctype = 'chm'
 
-from time import strftime, gmtime
-cvs_version = strftime('%d-%b-%Y.cvs', gmtime())
+import time
+cvs_version = time.strftime('%d-%b-%Y.cvs', time.gmtime(int(os.environ.get('SOURCE_DATE_EPOCH', time.time()))))
 
 opts = Variables()