pbuilder-dist: Pass DEB_BUILD_OPTIONS through (LP: #685786)

This commit is contained in:
Stefano Rivera 2012-02-15 16:24:14 +02:00
parent f363b745ff
commit 2afe15c4a3
2 changed files with 5 additions and 2 deletions

6
debian/changelog vendored
View File

@ -11,8 +11,10 @@ ubuntu-dev-tools (0.139) UNRELEASED; urgency=low
dput, lintian, patch, quilt. (LP: #846385)
* Re-add dgetlp. Still needed for downloading source packages from +queue.
(LP: #919805)
* pbuilder-dist: Export DISTRIBUTION and ARCHITECTURE as well as DIST and
ARCH. Thanks Alessio Treglia. (Closes: #659060, LP: #423609)
* pbuilder-dist:
- Export DISTRIBUTION and ARCHITECTURE as well as DIST and ARCH. Thanks
Alessio Treglia. (Closes: #659060, LP: #423609)
- Pass DEB_BUILD_OPTIONS through (LP: #685786)
* reverse-depends: Now that Debian is supported server-side:
- Convert Debian release aliases to codenames.
- Default to the devel release of the vendor distribution.

View File

@ -348,6 +348,7 @@ class PbuilderDist:
'DISTRIBUTION=' + self.target_distro,
'ARCH=' + self.build_architecture,
'DIST=' + self.target_distro,
'DEB_BUILD_OPTIONS=' + os.environ.get('DEB_BUILD_OPTIONS', ''),
self.builder,
] + arguments