From 5f3359c5c9dab9d5791d05a646b9c04c19eeb80e Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 2 Nov 2023 11:37:33 +0100 Subject: [PATCH] meson: install wall executable with group 'tty' ... for proper permissions. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d1034b2cc5..55ad30d6ac 100644 --- a/meson.build +++ b/meson.build @@ -2446,7 +2446,7 @@ exe = executable( link_with : [lib_common], dependencies : [lib_systemd], install_dir : usrbin_exec_dir, - install_mode : 'rwxr-sr-x', + install_mode : [ 'rwxr-sr-x', 'root', 'tty' ], install : opt, build_by_default : opt) if opt -- 2.47.2