Use dpkg-buildpackage instead of debuild in submittodebian. It really

doesn't need to run lintian twice.
This commit is contained in:
Stefano Rivera 2012-07-02 13:21:10 +02:00
parent 9b5cfb114d
commit a8a1eef67a
2 changed files with 8 additions and 1 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ubuntu-dev-tools (0.144) quantal; urgency=low
* Use dpkg-buildpackage instead of debuild in submittodebian. It really
doesn't need to run lintian twice.
-- Stefano Rivera <stefanor@ubuntu.com> Mon, 02 Jul 2012 13:20:29 +0200
ubuntu-dev-tools (0.143) unstable; urgency=low
[ Iain Lane ]

View File

@ -74,7 +74,7 @@ def build_source_package():
if os.path.isdir('.bzr'):
cmd = ['bzr', 'bd', '-S', '--', '-uc', '-us', '-nc']
else:
cmd = ['debuild', '-S', '-uc', '-us', '-nc']
cmd = ['dpkg-buildpackage', '-S', '-uc', '-us', '-nc']
env = os.environ.copy()
# Unset DEBEMAIL in case there's an @ubuntu.com e-mail address
env.pop('DEBEMAIL', None)