25 lines
777 B
Diff
25 lines
777 B
Diff
From e928afaa2588bb6afe740b20cf1fb3ea6a1c9f73 Mon Sep 17 00:00:00 2001
|
|
From: Luke Granger-Brown <git@lukegb.com>
|
|
Date: Sat, 2 Mar 2024 00:06:08 +0000
|
|
Subject: [PATCH 4/5] scripts/sconsdist: disable strict_timestamps - allow FS
|
|
timestamps pre 1980
|
|
|
|
---
|
|
scripts/sconsdist.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/scripts/sconsdist.py b/scripts/sconsdist.py
|
|
index 71c388ba2..96853e683 100755
|
|
--- a/scripts/sconsdist.py
|
|
+++ b/scripts/sconsdist.py
|
|
@@ -173,6 +173,7 @@ class Main(App):
|
|
sdk_bundle_path,
|
|
"w",
|
|
zipfile.ZIP_DEFLATED,
|
|
+ strict_timestamps=False,
|
|
) as zf:
|
|
for component_key in sdk_components_keys:
|
|
component_path = self._dist_components.get(component_key)
|
|
--
|
|
2.43.0
|
|
|