summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch')
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch18
1 files changed, 8 insertions, 10 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch b/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch
index 4f79a40d8b..117f9234ad 100644
--- a/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch
+++ b/meta/recipes-devtools/dpkg/dpkg/0007-dpkg-deb-build.c-Remove-usage-of-clamp-mtime-in-tar.patch
@@ -2,9 +2,6 @@ From 8659eeeeda74d71e12080121f0b13a88cbdda433 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linux.intel.com> 2From: =?UTF-8?q?An=C3=ADbal=20Lim=C3=B3n?= <anibal.limon@linux.intel.com>
3Date: Tue, 21 Feb 2017 11:23:27 -0600 3Date: Tue, 21 Feb 2017 11:23:27 -0600
4Subject: [PATCH] dpkg-deb/build.c: Remove usage of --clamp-mtime in tar 4Subject: [PATCH] dpkg-deb/build.c: Remove usage of --clamp-mtime in tar
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8 5
9Recently dpkg added --clamp-mtime to tar to create reproducible 6Recently dpkg added --clamp-mtime to tar to create reproducible
10build tarballs [1]. 7build tarballs [1].
@@ -23,14 +20,14 @@ Update patch context for dpkg 1.19.4.
23 20
24Signed-off-by: Kai Kang <kai.kang@windriver.com> 21Signed-off-by: Kai Kang <kai.kang@windriver.com>
25--- 22---
26 dpkg-deb/build.c | 2 +- 23 src/deb/build.c | 2 +-
27 1 file changed, 1 insertion(+), 1 deletion(-) 24 1 file changed, 1 insertion(+), 1 deletion(-)
28 25
29diff --git a/dpkg-deb/build.c b/dpkg-deb/build.c 26diff --git a/src/deb/build.c b/src/deb/build.c
30index 68d1875..053fcb7 100644 27index 5c74ff3..76613ad 100644
31--- a/dpkg-deb/build.c 28--- a/src/deb/build.c
32+++ b/dpkg-deb/build.c 29+++ b/src/deb/build.c
33@@ -457,7 +457,7 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder, 30@@ -505,7 +505,7 @@ tarball_pack(const char *dir, filenames_feed_func *tar_filenames_feeder,
34 31
35 command_init(&cmd, TAR, "tar -cf"); 32 command_init(&cmd, TAR, "tar -cf");
36 command_add_args(&cmd, "tar", "-cf", "-", "--format=gnu", 33 command_add_args(&cmd, "tar", "-cf", "-", "--format=gnu",
@@ -40,4 +37,5 @@ index 68d1875..053fcb7 100644
40 if (options->mode) 37 if (options->mode)
41 command_add_args(&cmd, "--mode", options->mode, NULL); 38 command_add_args(&cmd, "--mode", options->mode, NULL);
42-- 39--
432.11.0 402.25.1
41