mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-12 23:51:08 +00:00
Pass --builder=dpkg-buildpackage to bzr bd, in case the user has
configured a custom builder that doesn't do source builds (LP: #1019817)
This commit is contained in:
parent
0a5812f168
commit
4d28dfb9e6
4
debian/changelog
vendored
4
debian/changelog
vendored
@ -5,8 +5,10 @@ ubuntu-dev-tools (0.144) quantal; urgency=low
|
|||||||
lintian twice.
|
lintian twice.
|
||||||
- Use --include instead of --attach when not using reportbug's internal
|
- Use --include instead of --attach when not using reportbug's internal
|
||||||
MUA.
|
MUA.
|
||||||
|
- Pass --builder=dpkg-buildpackage to bzr bd, in case the user has
|
||||||
|
configured a custom builder that doesn't do source builds (LP: #1019817)
|
||||||
|
|
||||||
-- Stefano Rivera <stefanor@ubuntu.com> Mon, 02 Jul 2012 13:20:29 +0200
|
-- Stefano Rivera <stefanor@ubuntu.com> Mon, 02 Jul 2012 19:23:15 +0200
|
||||||
|
|
||||||
ubuntu-dev-tools (0.143) unstable; urgency=low
|
ubuntu-dev-tools (0.143) unstable; urgency=low
|
||||||
|
|
||||||
|
@ -72,7 +72,8 @@ Thanks for considering the patch.
|
|||||||
|
|
||||||
def build_source_package():
|
def build_source_package():
|
||||||
if os.path.isdir('.bzr'):
|
if os.path.isdir('.bzr'):
|
||||||
cmd = ['bzr', 'bd', '-S', '--', '-uc', '-us', '-nc']
|
cmd = ['bzr', 'bd', '--builder=dpkg-buildpackage', '-S',
|
||||||
|
'--', '-uc', '-us', '-nc']
|
||||||
else:
|
else:
|
||||||
cmd = ['dpkg-buildpackage', '-S', '-uc', '-us', '-nc']
|
cmd = ['dpkg-buildpackage', '-S', '-uc', '-us', '-nc']
|
||||||
env = os.environ.copy()
|
env = os.environ.copy()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user