From cbe0b43010a870c2943358a5173731f4baaa2064 Mon Sep 17 00:00:00 2001 From: Yi Zhao Date: Mon, 17 Feb 2020 18:55:25 +0800 Subject: [PATCH] libgphoto2: remove executable permission bits of udev rule file Fixes systemd-udevd warning: systemd-udevd[156]: Configuration file /etc/udev/rules.d/40-libgphoto2.rules is marked executable. Please remove executable permission bits. Proceeding anyway. Signed-off-by: Yi Zhao Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.23.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.23.bb b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.23.bb index a3bdf9cea4..a012c499ca 100644 --- a/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.23.bb +++ b/meta-oe/recipes-graphics/gphoto2/libgphoto2_2.5.23.bb @@ -34,7 +34,7 @@ do_configure_append() { do_install_append() { install -d ${D}${sysconfdir}/udev/rules.d/ - install -m 0755 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ + install -m 0644 ${WORKDIR}/*.rules ${D}${sysconfdir}/udev/rules.d/ } PACKAGES =+ "libgphotoport libgphoto2-camlibs"