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