Sfoglia il codice sorgente

dpkg-shlibdeps: Do not unnecessarily interpolate strings

This mostly reverts commit 2379a80fbdc49084894b448a49d6859486b92d02,
which would make the perlcritic test fail.
Guillem Jover 12 anni fa
parent
commit
59e6e1563a
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      scripts/dpkg-shlibdeps.pl

+ 3 - 3
scripts/dpkg-shlibdeps.pl

@@ -290,10 +290,10 @@ foreach my $file (keys %exec) {
 		    $ignore++ unless scalar(split_soname($soname));
 		    # 3/ when we have been asked to do so
 		    $ignore++ if $ignore_missing_info;
-		    error(_g("no dependency information found for %s " .
+		    error(_g('no dependency information found for %s ' .
 		             "(used by %s)\n" .
-		             "Hint: check if the library actually comes " .
-		             "from a package."), $lib, $file)
+		             'Hint: check if the library actually comes ' .
+		             'from a package.'), $lib, $file)
 		        unless $ignore;
 		}
 	    }