]> err.no Git - dpkg/commitdiff
Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
authorGuillem Jover <guillem@debian.org>
Tue, 22 May 2007 23:18:12 +0000 (23:18 +0000)
committerGuillem Jover <guillem@debian.org>
Tue, 22 May 2007 23:18:12 +0000 (23:18 +0000)
Thanks to Kylan Robinson. Closes: #425629

ChangeLog
debian/changelog
scripts/dpkg-source.pl

index 44fb33269eba20345cc17a450fbb077d6e9716c9..f1ca98ac3a4f050989b55f46a4ef6a40fd1e16b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-05-23  Kylan Robinson  <Kylan_Robinson@selinc.com>
+
+       * scripts/dpkg-source.pl: Fix regex (/\.debian.tar/ ->
+       /\.debian\.tar/).
+
 2007-05-23  Guillem Jover  <guillem@debian.org>
 
        * scripts/dpkg-source.pl ($copy_required): New variable.
index dcfb001cc4ea1bc93cdd26dfd17956febc28c62d..e7d0693c49ad20c814cdc4ff1ad257465e44b69e 100644 (file)
@@ -6,6 +6,8 @@ dpkg (1.14.4) UNRELEASED; urgency=low
       than the one containing the tarball. Closes: #424998
   * Remove an unused variable in dpkg-statoverride by renaming it to the
     initially intended name. Closes: #425041
+  * Fix loose regex in dpkg-source (/\.debian.tar/ -> /\.debian\.tar/).
+    Thanks to Kylan Robinson. Closes: #425629
 
   [ Updated dpkg translations ]
   * French (Frédéric Bothamy).
index a91dc8692c605533cd509e730f4ec45db7330c15..66a3f89715725624186349e829bc425b09069447 100755 (executable)
@@ -807,7 +807,7 @@ if ($opmode eq 'build') {
            my $sub = $1;
            $sub =~ s/\d+$// if $sub =~ /\D/;
            $target = "$expectprefix/$sub";
-       } elsif ($tarfile =~ /\.debian.tar/) {
+       } elsif ($tarfile =~ /\.debian\.tar/) {
            $target = "$expectprefix/debian";
        } else {
            $target = $expectprefix;