]> git.donarmstrong.com Git - dak.git/commitdiff
daklib/checks.py: No longer set LINTIAN_COLL_UNPACKED_SKIP_SIG=1
authorAnsgar Burchardt <ansgar@debian.org>
Sun, 20 Oct 2013 11:56:42 +0000 (13:56 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Sun, 20 Oct 2013 11:56:42 +0000 (13:56 +0200)
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

index abc2dcc1cb958d0ea94e12dfd7c6f9db2a28910c..d148d15bdd9f7d0959cae33e7163ac620e84e6ec 100644 (file)
@@ -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