From: Ross Burton Date: Fri, 18 Oct 2019 11:28:19 +0000 (+0100) Subject: file: explicitly disable seccomp X-Git-Tag: uninative-2.8~1327 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a752faa152df031df5acaa40491299ac115109a4;p=openembedded-core.git file: explicitly disable seccomp file will automatically enable seccomp if the seccomp headers are available, but the build will fail on Opensuse Tumbleweed because the include paths are wrong. Enabling seccomp is a bad idea because it interacts badly with pseudo (causing build failures), so explicitly and globally disable seccomp. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/file/file_5.37.bb b/meta/recipes-devtools/file/file_5.37.bb index a840dbc012..c53a120b84 100644 --- a/meta/recipes-devtools/file/file_5.37.bb +++ b/meta/recipes-devtools/file/file_5.37.bb @@ -21,6 +21,8 @@ S = "${WORKDIR}/git" inherit autotools update-alternatives +EXTRA_OECONF += "--disable-libseccomp" + ALTERNATIVE_${PN} = "file" ALTERNATIVE_LINK_NAME[file] = "${bindir}/file"