From a6def815e21d50db7a99ec74080c3fd7eb64e934 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 78a0bc0475..baca755d11 100644 --- a/meson.build +++ b/meson.build @@ -2411,7 +2411,7 @@ exe = executable( include_directories : includes, link_with : [lib_common], 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