From 53f9c33ffaca57b7332bb3950e19507e2660e23a Mon Sep 17 00:00:00 2001 From: nirenjan Date: Sun, 19 Jul 2020 22:19:25 -0700 Subject: [PATCH] Allow failure when installing udev rules When testing make install in a container, or if being run with fakeroot, it is possible that the udevadm commands may fail, which will abort the install. Therefore, allow the udev install hook to always pass. --- udev/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/udev/Makefile.am b/udev/Makefile.am index 86931ab..b2d9258 100644 --- a/udev/Makefile.am +++ b/udev/Makefile.am @@ -21,7 +21,7 @@ install-data-hook: echo "Installing udev rules" && \ udevadm control --reload-rules && \ udevadm trigger --subsystem-match=usb --attr-match=idVendor=06a3 --action=add \ - ;fi + ;fi ; true endif endif