diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-02-22 02:27:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 02:27:16 +0100 |
commit | 4788f635e37625efc0d7713c3a58b3af7a1a3711 (patch) | |
tree | 4225049cb2c44f5dce3f6dab2f2ec9f8890e9c11 /src/shutdown | |
parent | Merge pull request #26529 from medhefgo/boot-misc (diff) | |
parent | meson: Use dicts for fuzzer definitions (diff) | |
download | systemd-4788f635e37625efc0d7713c3a58b3af7a1a3711.tar.xz systemd-4788f635e37625efc0d7713c3a58b3af7a1a3711.zip |
Merge pull request #26203 from medhefgo/meson
meson: Use dicts for test/fuzzer definitions
Diffstat (limited to 'src/shutdown')
-rw-r--r-- | src/shutdown/meson.build | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/shutdown/meson.build b/src/shutdown/meson.build index d62032a4f1..1e28528b97 100644 --- a/src/shutdown/meson.build +++ b/src/shutdown/meson.build @@ -6,8 +6,11 @@ systemd_shutdown_sources = files( ) tests += [ - [files('test-umount.c', - 'umount.c'), - [], - [libmount]], + { + 'sources' : files( + 'test-umount.c', + 'umount.c', + ), + 'dependencies' : libmount, + }, ] |