summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-09-12 16:57:06 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-09-13 12:07:34 +0200
commitc1cd674357f921136b1e74ece641288670de33c7 (patch)
tree25922e8af7d74000a9bc7097ce40614539a7924b /meson.build
parentmeson: always allow compilation of tests binaries (diff)
downloadsystemd-c1cd674357f921136b1e74ece641288670de33c7.tar.xz
systemd-c1cd674357f921136b1e74ece641288670de33c7.zip
meson: drop some unneeded parens
Diffstat (limited to '')
-rw-r--r--meson.build12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson.build b/meson.build
index e8550ddea8..a503e3bf00 100644
--- a/meson.build
+++ b/meson.build
@@ -1753,7 +1753,7 @@ if conf.get('ENABLE_LOGIND') == 1
test('dlopen-pam_systemd',
test_dlopen,
# path to dlopen must include a slash
- args : [pam_systemd.full_path()])
+ args : pam_systemd.full_path())
endif
endif
endif
@@ -2484,7 +2484,7 @@ public_programs += exe
exe = executable('systemd-udevd',
systemd_udevd_sources,
include_directories : includes,
- c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
+ c_args : '-DLOG_REALM=LOG_REALM_UDEV',
link_with : [libudev_core,
libsystemd_network,
libudev_static],
@@ -2500,7 +2500,7 @@ public_programs += exe
exe = executable('udevadm',
udevadm_sources,
- c_args : ['-DLOG_REALM=LOG_REALM_UDEV'],
+ c_args : '-DLOG_REALM=LOG_REALM_UDEV',
include_directories : includes,
link_with : [libudev_core,
libsystemd_network,
@@ -2696,7 +2696,7 @@ exe = executable(
'test-libudev-sym',
test_libudev_sym_c,
include_directories : includes,
- c_args : ['-Wno-deprecated-declarations'],
+ c_args : '-Wno-deprecated-declarations',
link_with : [libudev],
build_by_default : want_tests != 'false',
install : install_tests,
@@ -2709,7 +2709,7 @@ exe = executable(
'test-libudev-static-sym',
test_libudev_sym_c,
include_directories : includes,
- c_args : ['-Wno-deprecated-declarations'],
+ c_args : '-Wno-deprecated-declarations',
link_with : [install_libudev_static],
build_by_default : want_tests != 'false' and static_libudev_pic,
install : install_tests and static_libudev_pic,
@@ -2807,7 +2807,7 @@ foreach exec : public_programs
if want_tests != 'false'
test('check-help-' + name,
meson_check_help,
- args : [exec.full_path()])
+ args : exec.full_path())
endif
endforeach