From: Christian Hesse Date: Tue, 31 Oct 2023 07:38:15 +0000 (+0100) Subject: meson: install write executable with group 'tty' X-Git-Tag: v2.39.3~19 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6c1c69c3e83606eced938d841af03c1acef03a0;p=thirdparty%2Futil-linux.git meson: install write executable with group 'tty' ... to fix: write: effective gid does not match group of /dev/pts/3 --- diff --git a/meson.build b/meson.build index d13e0eac4a..78a0bc0475 100644 --- a/meson.build +++ b/meson.build @@ -2430,7 +2430,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