circus, python-psutil: fix syntax in Config.in
authorRahul Bedarkar <rahul.bedarkar@imgtec.com>
Wed, 21 Sep 2016 16:18:28 +0000 (21:48 +0530)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 21 Sep 2016 18:28:19 +0000 (20:28 +0200)
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>
package/circus/Config.in
package/python-psutil/Config.in

index 3df41f5f23bc44c634763446163dabb320b26a96..94c59a4f91ee2813916c52211b16d06d1fb57cc0 100644 (file)
@@ -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)
index 0b1333cf5ce7b95bffc582297c988aeae2cfa1f3..1aec35d27411ab801243dfc04e2933cbb79aa952 100644 (file)
@@ -10,4 +10,4 @@ config BR2_PACKAGE_PYTHON_PSUTIL
          https://pypi.python.org/pypi/psutil
 
 comment "python-psutil needs a uClibc or glibc toolchain"
-       depends BR2_TOOLCHAIN_USES_MUSL
+       depends on BR2_TOOLCHAIN_USES_MUSL