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=fef11dee98f31681cfee6d3476eda6c85b7c04b9 commit fef11dee98f31681cfee6d3476eda6c85b7c04b9 Author: Guillem Jover <[email protected]> AuthorDate: Wed Jan 5 16:04:00 2022 +0100 dpkg-buildpackage: Switch terse make from -s to --no-print-directory Passing «-s» to make is too much terseness, increase it back, but omit printing directory entry and exit messages instead. Closes: #1003164 --- 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 aadad659a..eba46a190 100755 --- a/scripts/dpkg-buildpackage.pl +++ b/scripts/dpkg-buildpackage.pl @@ -454,7 +454,7 @@ if (defined $parallel) { if ($build_opts->has('terse')) { $ENV{MAKEFLAGS} //= ''; - $ENV{MAKEFLAGS} .= ' -s'; + $ENV{MAKEFLAGS} .= ' --no-print-directory'; } set_build_profiles(@build_profiles) if @build_profiles; -- Dpkg.Org's dpkg

