summaryrefslogtreecommitdiff
path: root/src/rpm
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-11-13 17:28:38 +0100
committerYu Watanabe <watanabe.yu+github@gmail.com>2021-11-14 13:54:47 +0900
commitb1bcda702cb60dc18e87dae838ad0ba43ab15d1e (patch)
tree6592c9274769a8b7602f8220c8942013bdb6b006 /src/rpm
parent4cf8a6092e58112375b5c3d91d7df9330c622e07 (diff)
downloadsystemd-b1bcda702cb60dc18e87dae838ad0ba43ab15d1e.tar.gz
meson: drop mode setting on systemd-update-helper
With a6d1760024d0884efb343e1c739f303619f7c8b9, this shouldn't be necessary anymore.
Diffstat (limited to 'src/rpm')
-rw-r--r--src/rpm/meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rpm/meson.build b/src/rpm/meson.build
index 8decb11f3b..4bfeda8883 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