From 25bec4d5e1876c97ce64458641ee3c200e0adf8b Mon Sep 17 00:00:00 2001 From: Johannes 'josch' Schauer Date: Mon, 7 Jan 2019 13:18:59 +0100 Subject: [PATCH] add --merged-usr and --no-merged-usr no-op options for debootstrap compatibility --- mmdebstrap | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mmdebstrap b/mmdebstrap index 7e9aa00..ee82568 100755 --- a/mmdebstrap +++ b/mmdebstrap @@ -1524,9 +1524,11 @@ sub main() { 'dpkgopt=s@' => \$options->{dpkgopts}, 'aptopt=s@' => \$options->{aptopts}, 'verbose' => \$options->{verbose}, - # no-op option so that mmdebstrap can be used with + # no-op options so that mmdebstrap can be used with # sbuild-createchroot --debootstrap=mmdebstrap 'resolve-deps' => sub {}, + 'merged-usr' => sub {}, + 'no-merged-usr' => sub {}, ) or pod2usage(-exitval => 2, -verbose => 1); my @valid_variants = ('extract', 'custom', 'essential', 'apt', 'required',