From: Chris Lamb Date: Thu, 29 Oct 2009 20:37:48 +0000 (+0000) Subject: Don't reject binary uploads. Sorry buildd maintainers. X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=3f97a5c2a9e284638c2035281b658c8975d662d6 Don't reject binary uploads. Sorry buildd maintainers. Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index 88cc1f91..a539e547 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1284,6 +1284,10 @@ class Upload(object): def check_lintian(self): cnf = Config() + # Don't reject binary uploads + if not self.pkg.changes['architecture'].has_key('source'): + return + # Only check some distributions valid_dist = False for dist in ('unstable', 'experimental'):