]> git.ipfire.org Git - thirdparty/systemd.git/blob - catalog/meson.build
Merge pull request #5164 from Werkov/ordering-for-_netdev-devices
[thirdparty/systemd.git] / catalog / meson.build
1 in_files = '''
2 systemd.bg.catalog
3 systemd.be.catalog
4 systemd.be@latin.catalog
5 systemd.fr.catalog
6 systemd.it.catalog
7 systemd.pl.catalog
8 systemd.pt_BR.catalog
9 systemd.ru.catalog
10 systemd.zh_CN.catalog
11 systemd.zh_TW.catalog
12 systemd.catalog
13 '''.split()
14
15 support_url = get_option('support-url')
16 support_sed = 's~%SUPPORT_URL%~@0@~'.format(support_url)
17 build_catalog_dir = meson.current_build_dir()
18
19 foreach file : in_files
20 custom_target(
21 file,
22 input : file + '.in',
23 output: file,
24 command : [sed, support_sed, '@INPUT@'],
25 capture : true,
26 install : true,
27 install_dir : catalogdir)
28 endforeach