This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch master
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=0674000c375ae1fda818093fa8073d61a5ad6565

commit 0674000c375ae1fda818093fa8073d61a5ad6565
Author: Guillem Jover <guil...@debian.org>
AuthorDate: Tue Aug 28 02:35:15 2018 +0200

    dpkg-shlibdeps: Split string at \n boundary
    
    Having the string read as “\nTo” confuses codespell, as a typo for not.
    Just break the string at the newline to make it more clear for humans
    and spell checkers alike.
    
    Warned-by: codespell
---
 scripts/dpkg-shlibdeps.pl | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/dpkg-shlibdeps.pl b/scripts/dpkg-shlibdeps.pl
index 4b18545e9..fa6c37a4d 100755
--- a/scripts/dpkg-shlibdeps.pl
+++ b/scripts/dpkg-shlibdeps.pl
@@ -482,8 +482,9 @@ foreach my $soname (keys %global_soname_needed) {
 # Quit now if any missing libraries
 if ($error_count >= 1) {
     my $note = g_('Note: libraries are not searched in other binary packages ' 
.
-       "that do not have any shlibs or symbols file.\nTo help dpkg-shlibdeps " 
.
-       'find private libraries, you might need to use -l.');
+                  "that do not have any shlibs or symbols file.\n" .
+                  'To help dpkg-shlibdeps find private libraries, you might ' .
+                  'need to use -l.');
     error(P_('cannot continue due to the error above',
              'cannot continue due to the errors listed above',
              $error_count) . "\n" . $note);

-- 
Dpkg.Org's dpkg

Reply via email to