28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From d0bcdce521f648c0a18bea795edfcb4f5ec77388 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dcermak@suse.com>
|
|
Date: Mon, 3 Jan 2022 13:18:13 +0100
|
|
Subject: [PATCH 1/4] drop tar option
|
|
|
|
---
|
|
scripts/Dpkg/Source/Archive.pm | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/scripts/Dpkg/Source/Archive.pm b/scripts/Dpkg/Source/Archive.pm
|
|
index 33c181b20..0cf545cb4 100644
|
|
--- a/scripts/Dpkg/Source/Archive.pm
|
|
+++ b/scripts/Dpkg/Source/Archive.pm
|
|
@@ -51,8 +51,8 @@ sub create {
|
|
my $mtime = $opts{source_date} // $ENV{SOURCE_DATE_EPOCH} || time;
|
|
# Call tar creation process
|
|
$spawn_opts{delete_env} = [ 'TAR_OPTIONS' ];
|
|
- $spawn_opts{exec} = [ $Dpkg::PROGTAR, '-cf', '-', '--format=gnu', '--sort=name',
|
|
- '--mtime', "\@$mtime", '--clamp-mtime', '--null',
|
|
+ $spawn_opts{exec} = [ $Dpkg::PROGTAR, '-cf', '-', '--format=gnu',
|
|
+ '--mtime', "\@$mtime", '--null',
|
|
'--numeric-owner', '--owner=0', '--group=0',
|
|
@{$opts{options}}, '-T', '-' ];
|
|
*$self->{pid} = spawn(%spawn_opts);
|
|
--
|
|
2.33.1
|
|
|