This is an automated email from the git hooks/post-receive script. mattia pushed a commit to branch master in repository devscripts.
commit 8b4faf4a0f280647fb2bf32016c9ea887b0a9814 Author: Chris Lamb <[email protected]> Date: Sun Oct 29 18:54:53 2017 +0000 debuild: Print the actual arguments we make to lintian. We are already outputting a line anyway and it's often quite informative to know whether we "should" see (for example) --pedantic tags, etc. Closes: #880124 Signed-off-by: Chris Lamb <[email protected]> Signed-off-by: Mattia Rizzolo <[email protected]> --- debian/changelog | 8 +++++--- scripts/debuild.pl | 5 +++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 935c110..fb6fb9e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,13 @@ devscripts (2.17.12) UNRELEASED; urgency=medium - * Team upload. - [ Adam D. Barratt ] * Fix typo in 2.7.11 changelog ("dpkg-bev" -> "dpkg-dev") - -- Adam D. Barratt <[email protected]> Fri, 27 Oct 2017 19:00:14 +0100 + [ Chris Lamb ] + * debuild: + + Print the actual arguments we make to lintian. Closes: #880124 + + -- Mattia Rizzolo <[email protected]> Mon, 30 Oct 2017 07:48:10 +0100 devscripts (2.17.11) unstable; urgency=medium diff --git a/scripts/debuild.pl b/scripts/debuild.pl index 2b836df..e682bdd 100755 --- a/scripts/debuild.pl +++ b/scripts/debuild.pl @@ -1055,8 +1055,9 @@ else { if ($run_lintian && $lintian_exists) { $<=$>=$uid; # Give up on root privileges if we can $(=$)=$gid; - print "Now running lintian...\n"; - system('lintian', @lintian_extra_opts, @lintian_opts, $changes); + my @lintian = ('lintian', @lintian_extra_opts, @lintian_opts, $changes); + print "Now running @lintian ...\n"; + system(@lintian); print "Finished running lintian.\n"; } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
