* tar was confused by ./ in the manifest, so strip it out. Fixes
authorjoeyh <joeyh@19660600-52fe-0310-9875-adc0d7a7b53c>
Wed, 3 Oct 2007 03:21:14 +0000 (03:21 +0000)
committerjoeyh <joeyh@19660600-52fe-0310-9875-adc0d7a7b53c>
Wed, 3 Oct 2007 03:21:14 +0000 (03:21 +0000)
    erlang-doc-html.

debian/changelog
pristine-tar

index b2dfa1d..e6ef86a 100644 (file)
@@ -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 <joeyh@debian.org>  Tue, 02 Oct 2007 23:13:08 -0400
 
index f9e6e20..cd94a0e 100755 (executable)
@@ -107,6 +107,8 @@ sub gentarball {
        open (IN, "$tempdir/manifest") || die "$tempdir/manifest: $!";
        while (<IN>) {
                chomp;
+               # ./ in the manifest just confuses tar
+               s/^\.\///;
                push @manifest, $_;
        }
        close IN;