From c3e3b2a20848a610040411bd00d8f1d7912e284c Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Wed, 11 Jun 2014 21:17:47 +0200 Subject: [PATCH] supervisor: add runtime dependency on python-setuptools supervisor has a runtime dependency on python-setuptools which was not expressed in its Config.in file. When running supervisor without setuptools, one gets: Starting supervisord: Traceback (most recent call last): File "/usr/bin/supervisord", line 5, in from pkg_resources import load_entry_point ImportError: No module named pkg_resources Partially fixes bug #7184 (https://bugs.busybox.net/show_bug.cgi?id=7184) Reported-by: Sebastian Himberger Signed-off-by: Thomas De Schampheleire Signed-off-by: Peter Korsgaard --- package/supervisor/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/supervisor/Config.in b/package/supervisor/Config.in index c511dd8705..2ab0e048f6 100644 --- a/package/supervisor/Config.in +++ b/package/supervisor/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_SUPERVISOR bool "supervisor" depends on BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_MELD3 + select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime dependency help A client/server system that allows its users to control a number of processes on UNIX-like operating systems. -- 2.30.2