From: Zbigniew Jędrzejewski-Szmek Date: Sat, 13 Nov 2021 16:28:38 +0000 (+0100) Subject: meson: drop mode setting on systemd-update-helper X-Git-Tag: v250-rc1~269 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1bcda702cb60dc18e87dae838ad0ba43ab15d1e;p=thirdparty%2Fsystemd.git meson: drop mode setting on systemd-update-helper With a6d1760024d0884efb343e1c739f303619f7c8b9, this shouldn't be necessary anymore. --- diff --git a/src/rpm/meson.build b/src/rpm/meson.build index 8decb11f3be..4bfeda8883c 100644 --- a/src/rpm/meson.build +++ b/src/rpm/meson.build @@ -4,7 +4,7 @@ in_files = [ ['macros.systemd', rpmmacrosdir != 'no', rpmmacrosdir], # we conditionalize on rpmmacrosdir, but install into rootlibexecdir - ['systemd-update-helper', rpmmacrosdir != 'no', rootlibexecdir, 'rwxr-xr-x'], + ['systemd-update-helper', rpmmacrosdir != 'no', rootlibexecdir], ['triggers.systemd', false], ['triggers.systemd.sh', false]] @@ -21,6 +21,5 @@ foreach tuple : in_files command : [meson_render_jinja2, config_h, '@INPUT@', '@OUTPUT@'], install : tuple[1], install_dir : tuple.length() > 2 ? tuple[2] : '', - install_mode : tuple.length() > 3 ? tuple[3] : false, build_by_default : true) endforeach