]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: drop mode setting on systemd-update-helper
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sat, 13 Nov 2021 16:28:38 +0000 (17:28 +0100)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 14 Nov 2021 04:54:47 +0000 (13:54 +0900)
With a6d1760024d0884efb343e1c739f303619f7c8b9, this shouldn't be
necessary anymore.

src/rpm/meson.build

index 8decb11f3bee1c57cbe189bbb88c24b37fb9c047..4bfeda8883c4059c666453b98523bf0ba8928362 100644 (file)
@@ -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