summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch')
-rw-r--r--meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
new file mode 100644
index 0000000000..8d884e543c
--- /dev/null
+++ b/meta/recipes-devtools/dpkg/dpkg/remove-tar-no-timestamp.patch
@@ -0,0 +1,16 @@
1busybox-1.19.4 tar utility doesn't support --warning=no-timestamp
2
3Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
4
5Upstream-Status: Inappropriate [configuration]
6--- a/dpkg-deb/extract.c
7+++ b/dpkg-deb/extract.c
8@@ -319,7 +319,7 @@ extracthalf(const char *debar, const cha
9 }
10 }
11
12- execlp(TAR, "tar", buffer, "-", "--warning=no-timestamp", NULL);
13+ execlp(TAR, "tar", buffer, "-", NULL);
14 ohshite(_("unable to execute %s (%s)"), "tar", TAR);
15 }
16 close(p2[0]);