]> err.no Git - dpkg/commitdiff
dpkg-architecture: Wrap long strings for die calls
authorGuillem Jover <guillem@debian.org>
Sun, 4 Nov 2007 18:53:46 +0000 (20:53 +0200)
committerGuillem Jover <guillem@debian.org>
Thu, 15 Nov 2007 22:21:59 +0000 (00:21 +0200)
ChangeLog
scripts/dpkg-architecture.pl

index 9bb255cc84a76a8122e09a7f68624dbe1e44047c..9c40bb37777645e814ff46584e8064fb38626af3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-04  Guillem Jover  <guillem@debian.org>
+
+       * scripts/dpkg-architecture.pl: Wrap long strings for die calls
+       at less than 80 chars.
+
 2007-11-04  Guillem Jover  <guillem@debian.org>
 
        * scripts/Dpkg/Arch.pm (debarch_to_gnutriplet): New function.
index ad9dd3d65620fd7d7240c2e040b9c74e61ba7d3c..858d6e4171f00ccd7e0725ab6bec07bf8acceb18 100755 (executable)
@@ -159,12 +159,16 @@ if (!defined($deb_host_arch)) {
 
 if ($req_host_arch ne '' && $req_host_gnu_type eq '') {
     $req_host_gnu_type = debarch_to_gnutriplet($req_host_arch);
-    die (sprintf(_g("unknown Debian architecture %s, you must specify GNU system type, too"), $req_host_arch)) unless defined $req_host_gnu_type;
+    die (sprintf(_g("unknown Debian architecture %s, you must specify " .
+                    "GNU system type, too"), $req_host_arch))
+        unless defined $req_host_gnu_type;
 }
 
 if ($req_host_gnu_type ne '' && $req_host_arch eq '') {
     $req_host_arch = gnutriplet_to_debarch($req_host_gnu_type);
-    die (sprintf(_g("unknown GNU system type %s, you must specify Debian architecture, too"), $req_host_gnu_type)) unless defined $req_host_arch;
+    die (sprintf(_g("unknown GNU system type %s, you must specify " .
+                    "Debian architecture, too"), $req_host_gnu_type))
+        unless defined $req_host_arch;
 }
 
 if ($req_host_gnu_type ne '' && $req_host_arch ne '') {