From 5c6ea405ef056d5bfa58ed928f62405b97fea1b8 Mon Sep 17 00:00:00 2001 From: Miciah Masters Date: Fri, 22 Sep 2017 19:38:17 -0400 Subject: Fix file mode for installing non-suid binary Use the file mode 0755 (executable but not suid) when installing the binary with INSTALL_UDEV_RULES=1. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8f23928..1e2ee50 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ INSTALL_UDEV_1 = install_udev_rules UDEVDIR ?= /lib/udev/rules.d MODE_0 = 4711 -MODE_1 = 0644 +MODE_1 = 0755 MODE = ${MODE_${INSTALL_UDEV_RULES}} all: brightnessctl -- cgit v1.2.3