From: Yann E. MORIN Date: Sun, 16 Dec 2012 12:56:34 +0000 (+0000) Subject: package/libseccomp: works only on x86 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3472e094a18147ab8deefbb8dd47d07c041cc222;p=buildroot.git package/libseccomp: works only on x86 As it is, the libseccomp code explicitly checks for x86 (32- or 64-bit), so it can't work on other architectures. Reported-by: Peter Korsgaard Signed-off-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in index 1e524d2f19..9ee1697c4f 100644 --- a/package/libseccomp/Config.in +++ b/package/libseccomp/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBSECCOMP bool "libseccomp" + depends on BR2_i386 || BR2_x86_64 help High level interface to the Linux Kernel's seccomp filter