summaryrefslogtreecommitdiff
path: root/package/circus
diff options
context:
space:
mode:
authorRahul Bedarkar <rahul.bedarkar@imgtec.com>2016-09-21 21:48:28 +0530
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-09-21 20:28:19 +0200
commitd2bb5e52793de32b46f3232b9dd2919cc08d6ae4 (patch)
tree0b61c6a5fcca7a4de9be639dbbd3ba45fff6882e /package/circus
parentab930190d7754b7f5fdda115b2069d00f1320861 (diff)
circus, python-psutil: fix syntax in Config.in
After commit ab930190d775 ("python-psutil: not available on musl") we are getting following error when we set defconfig package/python-psutil/Config.in:14: syntax error package/python-psutil/Config.in:13: invalid option package/circus/Config.in:21: syntax error package/circus/Config.in:20: invalid option Fixes: ab930190d775 ("python-psutil: not available on musl") Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/circus')
-rw-r--r--package/circus/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/circus/Config.in b/package/circus/Config.in
index 3df41f5f2..94c59a4f9 100644
--- a/package/circus/Config.in
+++ b/package/circus/Config.in
@@ -18,5 +18,5 @@ config BR2_PACKAGE_CIRCUS
comment "circus needs Python and a uClibc or glibc toolchain w/ C++, wchar, threads"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
- !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL \
+ !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL || \
!(BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3)