diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2023-02-27 08:13:32 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-02-28 08:50:56 -0800 |
commit | f50f9a9cac0b16b2dca1ecef045d2fd422216079 (patch) | |
tree | 659dd8a99536af2d9593405ebfe7e16d5dd931c5 | |
parent | 66b471ec10a9216b6275b6bc896a9333ecef2432 (diff) | |
download | meta-openembedded-f50f9a9cac0b16b2dca1ecef045d2fd422216079.tar.gz |
libusb-compat: RDEPENDS on libusb1
libusb-compat dlopen() libusb1 so we need to explicitly RDEPENDS on it.
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Reviewed-by: Ever ATILANO <ever.atilano@smile.fr>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libusb/libusb-compat_0.1.8.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libusb/libusb-compat_0.1.8.bb b/meta-oe/recipes-support/libusb/libusb-compat_0.1.8.bb index bfafdae7a4..57f1f54387 100644 --- a/meta-oe/recipes-support/libusb/libusb-compat_0.1.8.bb +++ b/meta-oe/recipes-support/libusb/libusb-compat_0.1.8.bb | |||
@@ -9,6 +9,9 @@ LICENSE = "LGPL-2.1-or-later" | |||
9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f2ac5f3ac4835e8f91324a26a590a423" | 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f2ac5f3ac4835e8f91324a26a590a423" |
10 | DEPENDS = "libusb1" | 10 | DEPENDS = "libusb1" |
11 | 11 | ||
12 | # libusb-compat dlopen() libusb1 so we need to explicitly RDEPENDS on it | ||
13 | RDEPENDS:${PN} += "libusb1" | ||
14 | |||
12 | # Few packages are known not to work with libusb-compat (e.g. libmtp-1.0.0), | 15 | # Few packages are known not to work with libusb-compat (e.g. libmtp-1.0.0), |
13 | # so here libusb-0.1 is removed completely instead of adding virtual/libusb0. | 16 | # so here libusb-0.1 is removed completely instead of adding virtual/libusb0. |
14 | # Besides, libusb-0.1 uses a per 1ms polling that hurts a lot to power | 17 | # Besides, libusb-0.1 uses a per 1ms polling that hurts a lot to power |