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.40-rc1~169 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00f115d81146599324c454f6756db6491855f430;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 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