forked from josch/mmdebstrap
check whether qemu-$arch-static exists early
This commit is contained in:
parent
f50ca9bf6d
commit
ab5d5777d5
1 changed files with 6 additions and 0 deletions
|
@ -3344,6 +3344,12 @@ sub main() {
|
||||||
. " binary";
|
. " binary";
|
||||||
}
|
}
|
||||||
$options->{qemu} = $deb2qemu->{ $options->{nativearch} };
|
$options->{qemu} = $deb2qemu->{ $options->{nativearch} };
|
||||||
|
if (any { $_ eq $options->{mode} } ('root', 'unshare')) {
|
||||||
|
my $qemubin = "/usr/bin/qemu-$options->{qemu}-static";
|
||||||
|
if (!-e $qemubin) {
|
||||||
|
error "cannot find $qemubin";
|
||||||
|
}
|
||||||
|
}
|
||||||
} elsif ($withemu == 1 and $noemu == 1) {
|
} elsif ($withemu == 1 and $noemu == 1) {
|
||||||
info "$options->{nativearch} is different from $hostarch but"
|
info "$options->{nativearch} is different from $hostarch but"
|
||||||
. " can be executed natively";
|
. " can be executed natively";
|
||||||
|
|
Loading…
Reference in a new issue