]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: install write executable with group 'tty'
authorChristian Hesse <mail@eworm.de>
Tue, 31 Oct 2023 07:38:15 +0000 (08:38 +0100)
committerKarel Zak <kzak@redhat.com>
Fri, 24 Nov 2023 10:18:13 +0000 (11:18 +0100)
... to fix:

write: effective gid does not match group of /dev/pts/3

meson.build

index d13e0eac4a49fc12b70ccf91201cf6620cdd7286..78a0bc04753f78d7c1a8ba5f2ad2faf0c11d7419 100644 (file)
@@ -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