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=8c7737461b990ae1b4db5cfc6f5df9087c976343 commit 8c7737461b990ae1b4db5cfc6f5df9087c976343 Author: Guillem Jover <[email protected]> AuthorDate: Fri Dec 13 04:21:58 2024 +0100 dpkg-buildpackage: Switch unmet dependency abort message from warning to error This is an error condition, do not emit it as if it was just a warning, which seems confusing. --- scripts/dpkg-buildpackage.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dpkg-buildpackage.pl b/scripts/dpkg-buildpackage.pl index c69e0744f..a45819b2d 100755 --- a/scripts/dpkg-buildpackage.pl +++ b/scripts/dpkg-buildpackage.pl @@ -675,7 +675,7 @@ if ($checkbuilddep) { if (not WIFEXITED($?)) { subprocerr('dpkg-checkbuilddeps'); } elsif (WEXITSTATUS($?)) { - warning(g_('build dependencies/conflicts unsatisfied; aborting')); + errormsg(g_('build dependencies/conflicts unsatisfied; aborting')); hint(g_('satify build dependencies with your package manager frontend')); exit 3; } -- Dpkg.Org's dpkg

