]> err.no Git - dpkg/commitdiff
dpkg-source: use English
authorFrank Lichtenheld <djpig@debian.org>
Sat, 6 Oct 2007 20:42:10 +0000 (22:42 +0200)
committerFrank Lichtenheld <djpig@debian.org>
Mon, 8 Oct 2007 22:39:57 +0000 (00:39 +0200)
Mainly change all $' to $POSTMATCH. I personally never can
remember that one and it breaks the syntax highlighting in
some editors.

scripts/dpkg-source.pl

index b75f74e8a810a41a1ef8b43ea2a098581461992d..e3c00c99e540d16970b1e38e7edc9e342c56cb2b 100755 (executable)
@@ -91,6 +91,7 @@ my @tar_ignore;
 
 use POSIX;
 use Fcntl qw (:mode);
+use English;
 use File::Temp qw (tempfile);
 use Cwd;
 
@@ -205,13 +206,13 @@ while (@ARGV && $ARGV[0] =~ m/^-/) {
            if $sourcestyle ne 'X';
         $sourcestyle= $1;
     } elsif (m/^-c/) {
-        $controlfile= $';
+        $controlfile= $POSTMATCH;
     } elsif (m/^-l/) {
-        $changelogfile= $';
+        $changelogfile= $POSTMATCH;
     } elsif (m/^-F([0-9a-z]+)$/) {
         $changelogformat=$1;
     } elsif (m/^-D([^\=:]+)[=:]/) {
-        $override{$1}= "$'";
+        $override{$1}= $POSTMATCH;
     } elsif (m/^-U([^\=:]+)$/) {
         $remove{$1}= 1;
     } elsif (m/^-i(.*)$/) {
@@ -226,9 +227,9 @@ while (@ARGV && $ARGV[0] =~ m/^-/) {
             $tar_ignore_default_pattern_done = 1;
         }
     } elsif (m/^-V(\w[-:0-9A-Za-z]*)[=:]/) {
-        $substvar{$1}= "$'";
+        $substvar{$1}= $POSTMATCH;
     } elsif (m/^-T/) {
-        $varlistfile= "$'";
+        $varlistfile= $POSTMATCH;
     } elsif (m/^-(h|-help)$/) {
         &usage; exit(0);
     } elsif (m/^--version$/) {
@@ -1529,9 +1530,10 @@ sub deoctify {
     @_= split(/\\/, $fn);
 
     foreach (@_) {
-        /^(\d{3})/ or next;
-        &failure(sprintf(_g("bogus character `\\%s' in `%s'"), $1, $fn)."\n") if oct($1) > 255;
-        $_= pack("c", oct($1)) . $';
+       /^(\d{3})/ or next;
+       &failure(sprintf(_g("bogus character `\\%s' in `%s'"), $1, $fn)."\n")
+           if oct($1) > 255;
+       $_= pack("c", oct($1)) . $POSTMATCH;
     }
     return join("", @_);
 } }