From b3c1f76bcc1dbd55fef584b8ddbda33f12733116 Mon Sep 17 00:00:00 2001 From: Sjoerd Simons Date: Wed, 21 Sep 2022 21:30:03 +0200 Subject: [PATCH] debootstrap: Always exclude usr-is-merged Work around new debootstrap behaviour by always excluding the usr-is-merged package as this allows derivatives based on older debian versions to build again. See #361 for more details Signed-off-by: Sjoerd Simons --- actions/debootstrap_action.go | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/debootstrap_action.go b/actions/debootstrap_action.go index c219ec2d..89223f97 100644 --- a/actions/debootstrap_action.go +++ b/actions/debootstrap_action.go @@ -203,6 +203,7 @@ func (d *DebootstrapAction) Run(context *debos.DebosContext) error { cmdline = append(cmdline, fmt.Sprintf("--variant=%s", d.Variant)) } + cmdline = append(cmdline, "--exclude=usr-is-merged") cmdline = append(cmdline, d.Suite) cmdline = append(cmdline, context.Rootdir) cmdline = append(cmdline, d.Mirror)