This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=04e4a8129e62a058951f53ff5c349071bab96c95 commit 04e4a8129e62a058951f53ff5c349071bab96c95 Author: Guillem Jover <[email protected]> AuthorDate: Fri Dec 13 04:13:15 2024 +0100 dpkg-checkbuilddeps: Improve unmet dependency error messages Lower case them to conform to the overall project error messages style, and expand the error for build conflicts to also mention these are unmet. --- scripts/dpkg-checkbuilddeps.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/dpkg-checkbuilddeps.pl b/scripts/dpkg-checkbuilddeps.pl index d2b81e5a1..36902d83a 100755 --- a/scripts/dpkg-checkbuilddeps.pl +++ b/scripts/dpkg-checkbuilddeps.pl @@ -138,11 +138,11 @@ if ($bc_value) { } if (@unmet) { - errormsg(g_('Unmet build dependencies: %s'), + errormsg(g_('unmet build dependencies: %s'), join(' ', map { $_->output() } @unmet)); } if (@conflicts) { - errormsg(g_('Build conflicts: %s'), + errormsg(g_('unmet build conflicts: %s'), join(' ', map { $_->output() } @conflicts)); } exit 1 if @unmet || @conflicts; -- Dpkg.Org's dpkg

