summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2017-03-09 14:16:55 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2017-03-09 14:16:55 +0100
commit2f88e1549baa6d51b3ea1dc824c115c2fb483571 (patch)
tree6da1d9f0b4f325d48263a73efc4bddd92c25a65c
parent809e5d7e07281b18d27f92ff244300bcf43d4d8a (diff)
downloaddrakx-kbd-mouse-x11-2f88e1549baa6d51b3ea1dc824c115c2fb483571.tar
drakx-kbd-mouse-x11-2f88e1549baa6d51b3ea1dc824c115c2fb483571.tar.gz
drakx-kbd-mouse-x11-2f88e1549baa6d51b3ea1dc824c115c2fb483571.tar.bz2
drakx-kbd-mouse-x11-2f88e1549baa6d51b3ea1dc824c115c2fb483571.tar.xz
drakx-kbd-mouse-x11-2f88e1549baa6d51b3ea1dc824c115c2fb483571.zip
speedup checking for x11-driver-input-libinput
We were still checking for evdev driver path... Check went wrong when switching from evdev to libinput in commit 187b6abf87e1a6a35d9fd5cad92932eb50afd55c
-rw-r--r--NEWS2
-rw-r--r--lib/mouse.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ca17ef0..e769da5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- speedup checking for x11-driver-input-libinput
+
Version 1.19 - 7 March 2017
- display_driver_helper:
diff --git a/lib/mouse.pm b/lib/mouse.pm
index 540c3f2..4f9e839 100644
--- a/lib/mouse.pm
+++ b/lib/mouse.pm
@@ -360,7 +360,7 @@ sub various_xfree_conf {
my $inputdrvpath = Xconfig::card::modules_dir() . '/input';
my $pkgs = [
if_($mouse->{synaptics}, ['x11-driver-input-synaptics', "$inputdrvpath/synaptics_drv.so"]),
- if_($mouse->{evdev_mice}, ['x11-driver-input-libinput', "$inputdrvpath/evdev_drv.so"]),
+ if_($mouse->{evdev_mice}, ['x11-driver-input-libinput', "$inputdrvpath/libinput_drv.so"]),
if_(@{$mouse->{wacom}}, ['x11-driver-input-wacom', "$inputdrvpath/wacom_drv.so"]),
];
$do_pkgs->ensure_files_are_installed($pkgs, 1);