[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[SCM] Debian package checker branch, master, updated. 2.5.11-179-g2cbc1e3



The following commit has been merged in the master branch:
commit 2cbc1e3dce7184adc7b307e742612813efcf6679
Author: Niels Thykier <niels@thykier.net>
Date:   Wed Feb 20 17:29:29 2013 +0100

    lintian: Filter out the pseudo-check "lintian"
    
    Filter out the pseudo-check "lintian" from the list of checks to run.
    As it is not really a check it is not "run", but the debug log
    suggested otherwise.
    
    Signed-off-by: Niels Thykier <niels@thykier.net>

diff --git a/frontend/lintian b/frontend/lintian
index a7e9a51..8d852d1 100755
--- a/frontend/lintian
+++ b/frontend/lintian
@@ -1104,6 +1104,10 @@ if (@unpack_info) {
 $opt{'jobs'} = default_parallel() unless defined $opt{'jobs'};
 $unpack_options{'jobs'} = $opt{'jobs'};
 
+# Filter out the "lintian" check if present - it does no real harm,
+# but it adds a bit of noise in the debug output.
+@scripts = grep { $_ ne 'lintian' } @scripts;
+
 debug_msg(1,
           "Selected action: $action",
           sprintf('Extra data to collect: %s', join(',',sort keys %extra_unpack)),

-- 
Debian package checker


Reply to: