From 1f66b5ffb0ee1aa934fc6ff9624e259cc884ede7 Mon Sep 17 00:00:00 2001 From: joeyh Date: Wed, 3 Oct 2007 03:21:14 +0000 Subject: [PATCH] * tar was confused by ./ in the manifest, so strip it out. Fixes erlang-doc-html. --- debian/changelog | 4 +++- pristine-tar | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b2dfa1d..e6ef86a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,9 @@ pristine-tar (0.3) UNRELEASED; urgency=low * pristine-tar sometimes got confused about tarballs that did not unpack - all files into a subdir. (eg, sear-media) + all files into a subdir. Fixes sear-media and 18 others. + * tar was confused by ./ in the manifest, so strip it out. Fixes + erlang-doc-html. -- Joey Hess Tue, 02 Oct 2007 23:13:08 -0400 diff --git a/pristine-tar b/pristine-tar index f9e6e20..cd94a0e 100755 --- a/pristine-tar +++ b/pristine-tar @@ -107,6 +107,8 @@ sub gentarball { open (IN, "$tempdir/manifest") || die "$tempdir/manifest: $!"; while () { chomp; + # ./ in the manifest just confuses tar + s/^\.\///; push @manifest, $_; } close IN; -- 2.7.4