[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.4.3-175-g597cd21



The following commit has been merged in the master branch:
commit 597cd21a1429c26c684d3915e11dec1410aeecb5
Author: Niels Thykier <niels@thykier.net>
Date:   Wed Jan 26 12:52:43 2011 +0100

    Fix breakage caused by previous commit
    
    Some "$str"/"\n" strings were turned into '$str'/'\n', which was
    unintended.

diff --git a/unpack/unpack-binpkg-l1 b/unpack/unpack-binpkg-l1
index 639d56d..2ee32e6 100755
--- a/unpack/unpack-binpkg-l1
+++ b/unpack/unpack-binpkg-l1
@@ -115,7 +115,7 @@ for my $field (keys %$data) {
     $field =~ s,/,:,g;
     my $field_file = "$base_dir/fields/$field";
     open(F, '>', $field_file) or fail("cannot open file $field_file for writing: $!");
-    print F $value,'\n';
+    print F $value,"\n";
     close(F);
 }
 
diff --git a/unpack/unpack-changes-l1 b/unpack/unpack-changes-l1
index 6520761..675e038 100755
--- a/unpack/unpack-changes-l1
+++ b/unpack/unpack-changes-l1
@@ -55,7 +55,7 @@ for my $field (keys %$data) {
     my $field_file = "$base_dir/fields/$field";
     open(F, '>', $field_file)
         or fail("cannot open file $field_file for writing: $!");
-    print F $value,'\n';
+    print F $value,"\n";
     close(F);
 }
 
diff --git a/unpack/unpack-srcpkg-l1 b/unpack/unpack-srcpkg-l1
index 20148bd..1483aaf 100755
--- a/unpack/unpack-srcpkg-l1
+++ b/unpack/unpack-srcpkg-l1
@@ -59,7 +59,7 @@ for my $field (keys %$data) {
     my $field_file = "$base_dir/fields/$field";
     open(F, '>', $field_file)
         or fail("cannot open file $field_file for writing: $!");
-    print F $value,'\n';
+    print F $value,"\n";
     close(F);
 }
 
@@ -97,7 +97,7 @@ if (!$tarball) {
 # don't parallelize this job because we need to use the output below.
 my @tar_options = ('-tvf');
 if ($tarball =~ /\.(lzma|xz)\z/) {
-    unshift(@tar_options, '--$1');
+    unshift(@tar_options, "--$1");
 }
 my @index;
 my $last = '';

-- 
Debian package checker


Reply to: