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=80c5c9d43896eef795a988cb080ff31ed8776172 commit 80c5c9d43896eef795a988cb080ff31ed8776172 Author: Guillem Jover <[email protected]> AuthorDate: Sat Dec 28 03:43:05 2024 +0100 dpkg-buildpackage: Reword hint on unsatisfied dependencies Guiding unsuspecting users to disable the dependency checks will in most cases not do what people expect, when what they should be doing instead is to install missing dependencies and remove conflicting ones. Closes: #817955 --- 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 df827db42..c69e0744f 100755 --- a/scripts/dpkg-buildpackage.pl +++ b/scripts/dpkg-buildpackage.pl @@ -676,7 +676,7 @@ if ($checkbuilddep) { subprocerr('dpkg-checkbuilddeps'); } elsif (WEXITSTATUS($?)) { warning(g_('build dependencies/conflicts unsatisfied; aborting')); - hint(g_('use -d flag to override')); + hint(g_('satify build dependencies with your package manager frontend')); exit 3; } } -- Dpkg.Org's dpkg

