diff options
| author | S. Lockwood-Childs <sjl@vctlabs.com> | 2022-03-30 00:22:58 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-03-30 07:51:38 -0700 |
| commit | 8781a8fbcb7ac8b703fcf6175c4f57cf744e1d4b (patch) | |
| tree | dd2c15156b2f7a646050b8e379c74cef5a876abb | |
| parent | 7eace39caf91aeb18a5f69d577e792046f704772 (diff) | |
| download | meta-openembedded-8781a8fbcb7ac8b703fcf6175c4f57cf744e1d4b.tar.gz | |
python3-evdev: fix host header contamination
The attempt to pass in correct headers was being ignored,
because it never got updated after distutils class was removed.
Switch to SETUPTOOLS_BUILD_ARGS, which setuptools3 class does
pay attention to.
Signed-off-by: S. Lockwood-Childs <sjl@vctlabs.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-evdev_1.4.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-evdev_1.4.0.bb b/meta-python/recipes-devtools/python/python3-evdev_1.4.0.bb index 97a8aedd79..ca324c9ae9 100644 --- a/meta-python/recipes-devtools/python/python3-evdev_1.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-evdev_1.4.0.bb | |||
| @@ -11,7 +11,7 @@ do_compile:prepend() { | |||
| 11 | rm -rf ${S}/evdev/ecodes.c | 11 | rm -rf ${S}/evdev/ecodes.c |
| 12 | } | 12 | } |
| 13 | 13 | ||
| 14 | DISTUTILS_BUILD_ARGS = "build_ecodes --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h" | 14 | SETUPTOOLS_BUILD_ARGS = "build_ecodes --evdev-headers ${STAGING_DIR_TARGET}/usr/include/linux/input.h:${STAGING_DIR_TARGET}/usr/include/linux/input-event-codes.h" |
| 15 | 15 | ||
| 16 | RDEPENDS:${PN} += "\ | 16 | RDEPENDS:${PN} += "\ |
| 17 | ${PYTHON_PN}-ctypes \ | 17 | ${PYTHON_PN}-ctypes \ |
