From 00f115d81146599324c454f6756db6491855f430 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 31 Oct 2023 08:38:15 +0100 Subject: [PATCH] meson: install write executable with group 'tty' ... to fix: write: effective gid does not match group of /dev/pts/3 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5c59c4400c..d1034b2cc5 100644 --- a/meson.build +++ b/meson.build @@ -2466,7 +2466,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.3