From: Christian Hesse Date: Thu, 2 Nov 2023 10:37:33 +0000 (+0100) Subject: meson: install wall executable with group 'tty' X-Git-Tag: v2.40-rc1~168 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5f3359c5c9dab9d5791d05a646b9c04c19eeb80e;p=thirdparty%2Futil-linux.git meson: install wall executable with group 'tty' ... for proper permissions. --- diff --git a/meson.build b/meson.build index d1034b2cc5..55ad30d6ac 100644 --- a/meson.build +++ b/meson.build @@ -2446,7 +2446,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