diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2022-01-21 15:28:23 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-01-21 17:56:03 +0100 |
commit | e93ada982127adcb2c9c842f09126a34cadf2ac1 (patch) | |
tree | 8c280832ff214f5d63a0f6232c486ebabfd7ce25 /catalog/meson.build | |
parent | Merge pull request #22202 from mwilck/keep-links-02 (diff) | |
download | systemd-e93ada982127adcb2c9c842f09126a34cadf2ac1.tar.xz systemd-e93ada982127adcb2c9c842f09126a34cadf2ac1.zip |
meson: Add missing test dependencies
Currently, running "meson build" followed by "meson test -C build"
will result in many failed tests due to missing dependencies. This
commit adds the missing dependencies to make sure no tests fail.
Diffstat (limited to 'catalog/meson.build')
-rw-r--r-- | catalog/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog/meson.build b/catalog/meson.build index 7139c2e053..a20189d314 100644 --- a/catalog/meson.build +++ b/catalog/meson.build @@ -19,7 +19,7 @@ support_url = get_option('support-url') support_sed = 's~%SUPPORT_URL%~@0@~'.format(support_url) foreach file : in_files - custom_target( + catalogs += custom_target( file, input : file + '.in', output: file, |