Florian Müllner 65450a836e build: Drop incorrect positional arg
Unlike other targets that take a name, i18n.merge_file() does not.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2078>
2021-12-23 18:43:25 +00:00

14 lines
262 B
Meson

template_metas = [
'00-plain.desktop',
'indicator.desktop',
]
template_deps = []
foreach template : template_metas
template_deps += i18n.merge_file(
input: template + '.in',
output: template,
po_dir: po_dir,
type: 'desktop',
)
endforeach