From 50446bbd91c935a153ebff7dd9bd37b2ae66d1f7 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Mon, 20 Sep 2021 17:10:41 +0200 Subject: dstat: Add missing python-six runtime dependency The tool depends on the six module, add it, otherwise the following traceback happens when running it on the target: Traceback (most recent call last): File "/usr/bin/dstat", line 32, in import six ModuleNotFoundError: No module named 'six' Signed-off-by: Marek Vasut Cc: Khem Raj Cc: Martin Jansa Signed-off-by: Khem Raj --- meta-oe/recipes-support/dstat/dstat_0.7.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-oe') diff --git a/meta-oe/recipes-support/dstat/dstat_0.7.4.bb b/meta-oe/recipes-support/dstat/dstat_0.7.4.bb index 0511f4a30a..a1076ccf94 100644 --- a/meta-oe/recipes-support/dstat/dstat_0.7.4.bb +++ b/meta-oe/recipes-support/dstat/dstat_0.7.4.bb @@ -21,4 +21,4 @@ do_install() { oe_runmake 'DESTDIR=${D}' install } -RDEPENDS:${PN} += "python3-core python3-misc python3-resource python3-shell python3-unixadmin" +RDEPENDS:${PN} += "python3-core python3-misc python3-resource python3-shell python3-six python3-unixadmin" -- cgit 1.2.3-korg