forked from josch/mmdebstrap
fix /proc/mounts regex to find binfmt_misc
This commit is contained in:
parent
d26f5de912
commit
a0c393f256
1 changed files with 3 additions and 3 deletions
|
@ -3298,9 +3298,9 @@ sub main() {
|
|||
or error "failed to open /proc/mounts: $!";
|
||||
unless (
|
||||
grep {
|
||||
/^binfmt_misc
|
||||
\/proc\/sys\/fs\/binfmt_misc
|
||||
binfmt_misc/x
|
||||
/^binfmt_misc\s+
|
||||
\/proc\/sys\/fs\/binfmt_misc\s+
|
||||
binfmt_misc\s+/x
|
||||
} (<$fh>)
|
||||
) {
|
||||
warning "binfmt_misc not found in /proc/mounts -- not"
|
||||
|
|
Loading…
Reference in a new issue