diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-07-20 23:36:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-09-24 07:30:09 +0100 |
commit | 20d355b2ff10dfcadf3f4f120406d78657e97736 (patch) | |
tree | 028e9ab80976fa06a1115179bf24c419b28487d9 | |
parent | 544241e12553127a7f3b522671292f9828374850 (diff) | |
download | poky-20d355b2ff10dfcadf3f4f120406d78657e97736.tar.gz |
libinput: fix udevdir
* Use "pkg-config --variable=udevdir udev" to fix udevdir, otherwise it
would use ${libdir}/udev which is incorrect for systemd's udev.
(From OE-Core rev: bcd93a4ad1188bb15db00727d5d03548d687a7a3)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/wayland/libinput_1.4.1.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-graphics/wayland/libinput_1.4.1.bb b/meta/recipes-graphics/wayland/libinput_1.4.1.bb index c3905f3d9a..3580392260 100644 --- a/meta/recipes-graphics/wayland/libinput_1.4.1.bb +++ b/meta/recipes-graphics/wayland/libinput_1.4.1.bb | |||
@@ -20,4 +20,6 @@ PACKAGECONFIG[libunwind] = "--with-libunwind,--without-libunwind,libunwind" | |||
20 | PACKAGECONFIG[libwacom] = "--enable-libwacom,--disable-libwacom,libwacom" | 20 | PACKAGECONFIG[libwacom] = "--enable-libwacom,--disable-libwacom,libwacom" |
21 | PACKAGECONFIG[gui] = "--enable-event-gui,--disable-event-gui,cairo gtk+3" | 21 | PACKAGECONFIG[gui] = "--enable-event-gui,--disable-event-gui,cairo gtk+3" |
22 | 22 | ||
23 | FILES_${PN} += "${libdir}/udev/" | 23 | UDEVDIR = "`pkg-config --variable=udevdir udev`" |
24 | |||
25 | EXTRA_OECONF += "--with-udev-dir=${UDEVDIR}" | ||