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=617fc1c20757b32c96d9669f106eab447f73b4a4 commit 617fc1c20757b32c96d9669f106eab447f73b4a4 Author: Guillem Jover <[email protected]> AuthorDate: Sat Jan 4 23:14:58 2025 +0100 dpkg-deb: Switch from info() to hint() for hint message This uses a semantic call so that we can perform unified formatting on the output, and in the future potentially silence all hinting if the users requests so. --- src/deb/build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deb/build.c b/src/deb/build.c index 5a50056fe..eefc369db 100644 --- a/src/deb/build.c +++ b/src/deb/build.c @@ -403,7 +403,7 @@ check_fsys_perms(const char *rootdir) if (st.st_uid != 0 || st.st_gid != 0) { warning(_("root directory %s has unusual owner or group %u:%u"), rootdir, st.st_uid, st.st_gid); - info(_("Hint: you might need to pass --root-owner-group, " + hint(_("you might need to pass --root-owner-group, " "see <%s> for further details"), "https://wiki.debian.org/Teams/Dpkg/RootlessBuilds"); } -- Dpkg.Org's dpkg

