Skip to content

Commit

Permalink
debootstrap: Always exclude usr-is-merged
Browse files Browse the repository at this point in the history
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 <sjoerd@collabora.com>
  • Loading branch information
sjoerdsimons committed Sep 22, 2022
1 parent a1bf634 commit b3c1f76
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions actions/debootstrap_action.go
Expand Up @@ -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)
Expand Down

0 comments on commit b3c1f76

Please sign in to comment.