blob: ba1e0f057df9f78e16d8bebdd545f7a2ef138624 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# file doesn't add seccomp rules for 64-bit filesystem function on 32-bit
# systems (e.g. fstat64), in allmost all functions of file
# various sycalls like fork, pipe, wait4 have no ALLOW_RULE, somehow
# works on 64-bit, not on 32-bit. (-z option)
# Hence: disabling seccomp support completly!
eval "$(
declare -f build | \
sed '
s/configure/configure --disable-libseccomp/
'
)"
|