summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch')
-rw-r--r--meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch b/meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch
deleted file mode 100644
index ed1d2f5b3b..0000000000
--- a/meta/recipes-devtools/squashfs-tools/files/0001-install-manpages.sh-do-not-write-original-timestamps.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From b44b00dae195d8587857c7e8054e9be4eaa1f8b3 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Thu, 7 Apr 2022 09:26:09 +0200
4Subject: [PATCH] install-manpages.sh: do not write original timestamps into
5 .gz metadata
6
7This helps binary reproducibility.
8
9Upstream-Status: Submitted [https://github.com/plougher/squashfs-tools/pull/177]
10Signed-off-by: Alexander Kanavin <alex@linutronix.de>
11---
12 generate-manpages/install-manpages.sh | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/generate-manpages/install-manpages.sh b/generate-manpages/install-manpages.sh
16index d4c9e91..6a43b89 100755
17--- a/generate-manpages/install-manpages.sh
18+++ b/generate-manpages/install-manpages.sh
19@@ -56,7 +56,7 @@ for i in mksquashfs unsquashfs sqfstar sqfscat; do
20 exit 1
21 fi
22
23- if ! gzip -f9 $2/$i.1; then
24+ if ! gzip -n -f9 $2/$i.1; then
25 echo "$0: Compressing installed manpage failed. Aborting" >&2
26 exit 1
27 fi
28--
292.30.2
30