summaryrefslogtreecommitdiffstats
path: root/source/x/libwacom/libwacom.joystick_property_matching.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2020-06-28 21:57:58 +0000
committer Eric Hameleers <alien@slackware.com>2020-06-29 08:59:53 +0200
commitc1b337e06ee4ea307f7a8307d0bf370576ea404f (patch)
treec4dddc3cadf4f2b5948e05ac2ca446a2b701f6ed /source/x/libwacom/libwacom.joystick_property_matching.patch
parent93abc85df8a72067aecc72c4773d00b040d6a1e2 (diff)
downloadcurrent-ca8cbafb143039d3b83952dce8468df9c875ecaf.tar.gz
current-ca8cbafb143039d3b83952dce8468df9c875ecaf.tar.xz
Sun Jun 28 21:57:58 UTC 202020200628215758
x/libwacom-1.4-x86_64-2.txz: Rebuilt. Fix joystick property matching in udev rule. Thanks to Pixxt.
Diffstat (limited to 'source/x/libwacom/libwacom.joystick_property_matching.patch')
-rw-r--r--source/x/libwacom/libwacom.joystick_property_matching.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/source/x/libwacom/libwacom.joystick_property_matching.patch b/source/x/libwacom/libwacom.joystick_property_matching.patch
new file mode 100644
index 000000000..84360dc92
--- /dev/null
+++ b/source/x/libwacom/libwacom.joystick_property_matching.patch
@@ -0,0 +1,27 @@
+From 9bacf5a1bf079c972abd66b3bd8bca923ae6ecb1 Mon Sep 17 00:00:00 2001
+From: Sebastian Keller <sebastian-keller@gmx.de>
+Date: Sat, 27 Jun 2020 17:21:53 +0200
+Subject: [PATCH] tools: Fix joystick property matching in udev rule
+
+This was not doing actual matching of the property, but assigning it,
+which resulted in no device being assigned this property. This broke
+gamepad/joystick permissions.
+
+Fixes #271
+---
+ tools/65-libwacom.rules.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/65-libwacom.rules.in b/tools/65-libwacom.rules.in
+index e7ce4aa..04f2bf3 100644
+--- a/tools/65-libwacom.rules.in
++++ b/tools/65-libwacom.rules.in
+@@ -20,6 +20,6 @@ KERNELS=="input*", \
+
+ # We can't unset properties through the hwdb but we can set them to zero.
+ # So let's have a rule that converts the 0 properties to unset ones.
+-ENV{ID_INPUT_JOYSTICK}="0", ENV{ID_INPUT_JOYSTICK}=""
++ENV{ID_INPUT_JOYSTICK}=="0", ENV{ID_INPUT_JOYSTICK}=""
+
+ LABEL="libwacom_end"
+