mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
37efbbd821
The indentation for emacs'es meson-mode is added .dir-locals. All files are reindented automatically, using the lasest meson-mode from git. Indentation should now be fairly consistent.
13 lines
434 B
Meson
13 lines
434 B
Meson
i18n = import('i18n')
|
|
i18n.gettext(meson.project_name())
|
|
|
|
#####################################################################
|
|
|
|
intltool_merge = find_program('intltool-merge')
|
|
po_dir = meson.current_source_dir()
|
|
|
|
intltool_cache = join_paths(meson.current_build_dir(), 'intltool-merge-cache')
|
|
intltool_command = [intltool_merge, '-x', '-u',
|
|
'-c', intltool_cache,
|
|
po_dir, '@INPUT@', '@OUTPUT@']
|