From a30decdb682d9446e0141b231fd03cf365d74d52 Mon Sep 17 00:00:00 2001 From: Ansgar Burchardt Date: Sun, 20 Oct 2013 13:56:42 +0200 Subject: [PATCH] daklib/checks.py: No longer set LINTIAN_COLL_UNPACKED_SKIP_SIG=1 lintian passes --no-check to dpkg-source by default since 2.5.15. There is no longer a need to set undocumented environment variables. --- daklib/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daklib/checks.py b/daklib/checks.py index abc2dcc1..d148d15b 100644 --- a/daklib/checks.py +++ b/daklib/checks.py @@ -662,7 +662,7 @@ class LintianCheck(Check): if user is not None: cmd.extend(['sudo', '-H', '-u', user]) - cmd.extend(['LINTIAN_COLL_UNPACKED_SKIP_SIG=1', '/usr/bin/lintian', '--show-overrides', '--tags-from-file', temp_filename, changespath]) + cmd.extend(['/usr/bin/lintian', '--show-overrides', '--tags-from-file', temp_filename, changespath]) output = daklib.daksubprocess.check_output(cmd, stderr=subprocess.STDOUT) except subprocess.CalledProcessError as e: result = e.returncode -- 2.39.2