diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2012-12-16 12:56:34 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-17 07:25:29 +0100 |
commit | 3472e094a18147ab8deefbb8dd47d07c041cc222 (patch) | |
tree | 1eafd81ea8798bb5e9dea537280072634cf9251f | |
parent | bdafee20a64492daa4d6dc4f3aaf4516c53e12ba (diff) | |
download | buildroot-novena-3472e094a18147ab8deefbb8dd47d07c041cc222.tar.gz buildroot-novena-3472e094a18147ab8deefbb8dd47d07c041cc222.zip |
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 <jacmet@uclibc.org>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/libseccomp/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libseccomp/Config.in b/package/libseccomp/Config.in index 1e524d2f1..9ee1697c4 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 |