mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-14 00:21:08 +00:00
If there's a "etc/<distro>/apt.conf" file inside the build result
directory, pass it to pbuilder as --aptconfdir. Thanks to Paul Novotny and Ryan Pavlik (LP: #363043).
This commit is contained in:
parent
5069952a4a
commit
1028885576
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -22,6 +22,9 @@ ubuntu-dev-tools (0.76) UNRELEASED; urgency=low
|
||||
[ Siegfried-Angel Gevatter Pujals ]
|
||||
* pbuilder-dist:
|
||||
- Expand "~" in PBUILDFOLDER to the user's home directory.
|
||||
- If there's a "etc/<distro>/apt.conf" file inside the build result
|
||||
directory, pass it to pbuilder as --aptconfdir. Thanks to Paul Novotny
|
||||
and Ryan Pavlik (LP: #363043).
|
||||
|
||||
-- Siegfried-Angel Gevatter Pujals <rainct@ubuntu.com> Sun, 16 Aug 2009 00:11:09 +0200
|
||||
|
||||
|
@ -245,7 +245,9 @@ class pbuilder_dist:
|
||||
arguments.append('--debootstrapopts --arch')
|
||||
arguments.append('--debootstrapopts "%(build_architecture)s"' % self)
|
||||
|
||||
### $( [ $ISDEBIAN != "False" ] || echo "--aptconfdir \"${BASE_DIR}/etc/${DISTRIBUTION}/apt.conf/\"" ) \
|
||||
apt_conf_dir = os.path.join(self.base, 'etc/%(target_distro)s/apt.conf' % self)
|
||||
if os.path.exists(apt_conf_dir):
|
||||
arguments.append('--aptconfdir "%s"' % apt_conf_dir)
|
||||
|
||||
# Append remaining arguments
|
||||
if remaining_arguments:
|
||||
|
Loading…
x
Reference in New Issue
Block a user