From 5c9849cd39422ba28f217ba954cdde859a3fe75b Mon Sep 17 00:00:00 2001 From: Javier Viguera Date: Wed, 12 Mar 2014 16:27:00 +0100 Subject: crda: fix udev rule The SBINDIR variable in makefile's install rule needs to have a trailing slash so the path to the 'crda' binary in the udev rule is correct. Otherwise the udev rule has a wrong path: KERNEL=="regulatory*", ACTION=="change", SUBSYSTEM=="platform", RUN+="/usr/sbincrda" and at runtime udev complains: failed to execute '/usr/sbincrda' when a regulatory domain event is triggered. Signed-off-by: Javier Viguera Acked-by: Koen Kooi Signed-off-by: Joe MacDonald --- meta-networking/recipes-connectivity/crda/crda_1.1.3.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-networking/recipes-connectivity/crda') diff --git a/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb b/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb index bee3e826d9..0bb899860b 100644 --- a/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb +++ b/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb @@ -24,7 +24,7 @@ do_compile() { } do_install() { - oe_runmake SBINDIR=${sbindir} install + oe_runmake SBINDIR=${sbindir}/ install install -d ${D}${libdir}/crda/ -- cgit 1.2.3-korg