diff -Nru dpkg-1.15.8.4ubuntu2/debian/changelog dpkg-1.15.8.4ubuntu3/debian/changelog --- dpkg-1.15.8.4ubuntu2/debian/changelog 2010-08-23 12:08:21.000000000 +0100 +++ dpkg-1.15.8.4ubuntu3/debian/changelog 2010-09-08 10:29:50.000000000 +0100 @@ -1,3 +1,12 @@ +dpkg (1.15.8.4ubuntu3) maverick; urgency=low + + * scripts/Dpkg/Source/Archive.pm: Drop -k parameter from the tar call used + by dpkg-source to extract tarballs. Upstream binary files modified by the + packager were not properly installed due to this. Patch courtesy of + Raphaƫl Hertzog (upstream, debian git). (LP: #633015) + + -- Dave Walker (Daviey) Wed, 08 Sep 2010 10:17:20 +0100 + dpkg (1.15.8.4ubuntu2) maverick; urgency=low * Backport from sid branch (Guillem Jover): diff -Nru dpkg-1.15.8.4ubuntu2/scripts/Dpkg/Source/Archive.pm dpkg-1.15.8.4ubuntu3/scripts/Dpkg/Source/Archive.pm --- dpkg-1.15.8.4ubuntu2/scripts/Dpkg/Source/Archive.pm 2010-08-23 12:08:22.000000000 +0100 +++ dpkg-1.15.8.4ubuntu3/scripts/Dpkg/Source/Archive.pm 2010-09-08 10:16:36.000000000 +0100 @@ -124,7 +124,7 @@ # Call tar extraction process $spawn_opts{"delete_env"} = [ "TAR_OPTIONS" ]; $spawn_opts{'exec'} = [ 'tar', '--no-same-owner', '--no-same-permissions', - @{$opts{"options"}}, '-xkf', '-' ]; + @{$opts{"options"}}, '-xf', '-' ]; spawn(%spawn_opts); $self->close();