From fd89ae61d6d041bfef43cf015788198740e93185 Mon Sep 17 00:00:00 2001 From: Manuel Traut Date: Wed, 30 Mar 2016 15:26:05 +0200 Subject: [PATCH] add apt-listchanges to debootstrap packages it is needed by python-apt Signed-off-by: Manuel Traut --- elbepack/rfs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/elbepack/rfs.py b/elbepack/rfs.py index a150661a51..67ba7a42b6 100644 --- a/elbepack/rfs.py +++ b/elbepack/rfs.py @@ -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: