diff options
author | Yegor Yefremov <yegorslists@googlemail.com> | 2025-01-14 11:20:28 +0100 |
---|---|---|
committer | Dan Williams <dan@bigw.org> | 2025-01-23 02:36:31 +0000 |
commit | 907f7a2813c2f2e424a466b5c2544ea4f60a71cf (patch) | |
tree | 2251232ac0792aa5b97e5581b6d894dec1ed10c7 /meson.build | |
parent | 4e31b7fdda9f341f3d9f1e9d6c8fc9e2ba27bafd (diff) |
Specify a path to the ITS rules
Use our own ITS rules found under data/its. This resolves a
configuration breakage on some systems:
msgfmt: cannot locate ITS rules for data/org.freedesktop.ModemManager1.policy.in
According to the msgfmt manual, we need to specify a path to the parent
directory containing its folder. Hence, we add a path to data as the
data_dirs option.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 4cbe0a6b..98e5f5f5 100644 --- a/meson.build +++ b/meson.build @@ -63,6 +63,7 @@ build_root = meson.current_build_dir() build_aux_dir = source_root / 'build-aux' templates_dir = source_root / 'build-aux/templates' po_dir = source_root / 'po' +data_dir = source_root / 'data' src_dir = source_root / 'src' plugins_dir = source_root / 'src/plugins' |