diff options
author | 2019-02-14 09:53:10 +0100 | |
---|---|---|
committer | 2019-02-14 11:06:02 +0100 | |
commit | 17c7b9337989092ee3659aaa01fb508efd144c16 (patch) | |
tree | 89f5f56dd49d997b594c6fbc8f31224cccf8b8e6 /package/docker-containerd/Config.in | |
parent | 9d2166c97dcee98454338e3bd9cae59a5422644d (diff) | |
download | buildroot-17c7b9337989092ee3659aaa01fb508efd144c16.tar.gz buildroot-17c7b9337989092ee3659aaa01fb508efd144c16.tar.bz2 |
package/docker-containerd: fix typo in uclibc dependency
Commit 6e3f7fbc072c88ab344f2ffa39e402464b566f19 ("package/runc: add
upstream security fix for CVE-2019-5736") added a dependency of
docker-containerd to uclibc (inherited from runc), but the depends on
has a typo that makes it ineffective. Due to this, docker-containerd
can still be selected in uClibc configurations, causing runc to be
build, and failing to build due fexecve() being missing in uClibc.
Fixes:
http://autobuild.buildroot.net/results/64ecdb1e007106fdb05979b10b42b90591255504/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/docker-containerd/Config.in')
-rw-r--r-- | package/docker-containerd/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/docker-containerd/Config.in b/package/docker-containerd/Config.in index bdb5dd7b80..5e0cc1e877 100644 --- a/package/docker-containerd/Config.in +++ b/package/docker-containerd/Config.in @@ -3,7 +3,7 @@ config BR2_PACKAGE_DOCKER_CONTAINERD depends on BR2_PACKAGE_HOST_GO_ARCH_SUPPORTS depends on BR2_PACKAGE_HOST_GO_CGO_LINKING_SUPPORTS depends on BR2_TOOLCHAIN_HAS_THREADS - depends on !BR2_PACKAGE_TOOLCHAIN_USES_UCLIBC # runc + depends on !BR2_TOOLCHAIN_USES_UCLIBC # runc depends on BR2_USE_MMU # util-linux select BR2_PACKAGE_RUNC # runtime dependency select BR2_PACKAGE_UTIL_LINUX # runtime dependency |