diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2020-06-24 15:16:17 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-24 18:48:44 -0700 |
commit | ed2fc41cf6367096d18c3f293bbc4c631f81e631 (patch) | |
tree | 5451c8ebb53214c394a0c9508791c804428f5492 | |
parent | 4413f4cb70a5a4cf11c2f9c1881c4506860c588c (diff) | |
download | meta-openembedded-ed2fc41cf6367096d18c3f293bbc4c631f81e631.tar.gz |
lirc: Add python3 to the run-time dependencies
Add python3 to the run-time dependencies to fix the following
issue with lircd-setup:
env: can't execute 'python3': No such file or directory
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.1.bb b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.1.bb index 52d6adb567..2843cdf95c 100644 --- a/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.1.bb +++ b/meta-oe/dynamic-layers/meta-python/recipes-connectivity/lirc/lirc_0.10.1.bb | |||
@@ -82,7 +82,7 @@ do_install_append() { | |||
82 | 82 | ||
83 | PACKAGES =+ "${PN}-contrib ${PN}-exec ${PN}-plugins ${PN}-python" | 83 | PACKAGES =+ "${PN}-contrib ${PN}-exec ${PN}-plugins ${PN}-python" |
84 | 84 | ||
85 | RDEPENDS_${PN} = "bash" | 85 | RDEPENDS_${PN} = "bash python3" |
86 | RDEPENDS_${PN}-exec = "${PN}" | 86 | RDEPENDS_${PN}-exec = "${PN}" |
87 | RDEPENDS_${PN}-python = "python3-shell python3-pyyaml python3-datetime python3-netclient python3-stringold" | 87 | RDEPENDS_${PN}-python = "python3-shell python3-pyyaml python3-datetime python3-netclient python3-stringold" |
88 | 88 | ||