Skip to content

Commit

Permalink
add apt-listchanges to debootstrap packages
Browse files Browse the repository at this point in the history
it is needed by python-apt

Signed-off-by: Manuel Traut <manut@linutronix.de>
  • Loading branch information
Manuel Traut committed Mar 30, 2016
1 parent 9b1b72c commit fd89ae6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elbepack/rfs.py
Expand Up @@ -117,10 +117,10 @@ def debootstrap (self):

if not self.xml.is_cross (host_arch):
if self.xml.has("project/noauth"):
cmd = 'debootstrap --no-check-gpg --arch=%s "%s" "%s" "%s"' % (
cmd = 'debootstrap --include=apt-listchanges --no-check-gpg --arch=%s "%s" "%s" "%s"' % (
arch, suite, self.rfs.path, primary_mirror)
else:
cmd = 'debootstrap --arch=%s "%s" "%s" "%s"' % (
cmd = 'debootstrap --include=apt-listchanges --arch=%s "%s" "%s" "%s"' % (
arch, suite, self.rfs.path, primary_mirror)

try:
Expand Down

0 comments on commit fd89ae6

Please sign in to comment.