depot/nix/pkgs/flipperzero-firmware/0004-scripts-sconsdist-disable-strict_timestamps-allow-FS.patch

26 lines
777 B
Diff
Raw Normal View History

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
2023-07-19 02:54:50 +00:00
Subject: [PATCH 4/5] scripts/sconsdist: disable strict_timestamps - allow FS
timestamps pre 1980
---
2023-07-19 02:54:50 +00:00
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:
2023-04-16 18:15:28 +00:00
for component_key in sdk_components_keys:
component_path = self._dist_components.get(component_key)
--
2.43.0