diff options
author | Rahul Bedarkar <rahul.bedarkar@imgtec.com> | 2016-09-21 21:48:28 +0530 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-09-21 20:28:19 +0200 |
commit | d2bb5e52793de32b46f3232b9dd2919cc08d6ae4 (patch) | |
tree | 0b61c6a5fcca7a4de9be639dbbd3ba45fff6882e /package/python-psutil | |
parent | ab930190d7754b7f5fdda115b2069d00f1320861 (diff) | |
download | buildroot-d2bb5e52793de32b46f3232b9dd2919cc08d6ae4.tar.gz buildroot-d2bb5e52793de32b46f3232b9dd2919cc08d6ae4.zip |
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/python-psutil')
-rw-r--r-- | package/python-psutil/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/python-psutil/Config.in b/package/python-psutil/Config.in index 0b1333cf5c..1aec35d274 100644 --- a/package/python-psutil/Config.in +++ b/package/python-psutil/Config.in @@ -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 |