diff options
author | Yoann Congal <yoann.congal@smile.fr> | 2025-05-03 00:49:44 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-05-03 01:59:06 -0700 |
commit | 0d5ffeeb70639920ab20de1e6ef4c5ece72b97bd (patch) | |
tree | e551727b7aec253f1015f74aa847d2415840c801 | |
parent | acaf3462d00ab84abf42a941a45e0fe0c7c0f75d (diff) | |
download | meta-openembedded-0d5ffeeb70639920ab20de1e6ef4c5ece72b97bd.tar.gz |
python3-evdev: add missing uinput header
Without uinput.h header, the evdev module can't be imported because it
lacks the UI_FF* constants.
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-python/recipes-devtools/python/python3-evdev_1.9.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-evdev_1.9.2.bb b/meta-python/recipes-devtools/python/python3-evdev_1.9.2.bb index 28c8ea4bc1..dc777cb987 100644 --- a/meta-python/recipes-devtools/python/python3-evdev_1.9.2.bb +++ b/meta-python/recipes-devtools/python/python3-evdev_1.9.2.bb | |||
@@ -12,7 +12,7 @@ do_compile:prepend() { | |||
12 | } | 12 | } |
13 | 13 | ||
14 | PEP517_BUILD_OPTS = "--config-setting=--build-option='build_ecodes \ | 14 | PEP517_BUILD_OPTS = "--config-setting=--build-option='build_ecodes \ |
15 | --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h \ | 15 | --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h:${STAGING_DIR_TARGET}/usr/include/linux/uinput.h \ |
16 | --reproducible'" | 16 | --reproducible'" |
17 | 17 | ||
18 | RDEPENDS:${PN} += "\ | 18 | RDEPENDS:${PN} += "\ |