From e1eeebbb11ca0eca5dfd2ce32a928ee5174ea7ff Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Tue, 11 Jan 2022 10:21:23 +0100 Subject: meson: Use files() for tests Not having to provide the full path in the source tree is much nicer and the produced lists can also be used anywhere in the source tree. --- src/coredump/meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/coredump') diff --git a/src/coredump/meson.build b/src/coredump/meson.build index b832192c9f..49ea93965b 100644 --- a/src/coredump/meson.build +++ b/src/coredump/meson.build @@ -14,8 +14,8 @@ if conf.get('ENABLE_COREDUMP') == 1 and install_sysconfdir_samples endif tests += [ - [['src/coredump/test-coredump-vacuum.c', - 'src/coredump/coredump-vacuum.c', - 'src/coredump/coredump-vacuum.h'], + [files('test-coredump-vacuum.c', + 'coredump-vacuum.c', + 'coredump-vacuum.h'), [], [], [], '', 'manual'], ] -- cgit v1.2.3