summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorShivam Madlani <shivammadlani5@gmail.com>2022-10-15 20:02:28 +0000
committerMarcus Lundblad <ml@dfupdate.se>2022-10-15 20:02:28 +0000
commit142560ff25bde14a1384c477225b48c0108223a7 (patch)
treedcbdc71b309f15330ac8344f0ad1e72feb52c974 /meson.build
parent608964f5c0c07502b8c6af7a4ec7a16b42328d2b (diff)
downloadgnome-maps-142560ff25bde14a1384c477225b48c0108223a7.tar.gz
meson: Stop using deprecated meson features
Meson>=0.56.0 has deprecated .source_root(), .build_root() and ExternalProgram.path. Replace with .project_source_root(), .project_build_root() and ExternalProgram.full_path Fixes #495
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 30bda546..296703bb 100644
--- a/meson.build
+++ b/meson.build
@@ -48,7 +48,7 @@ libmaps_deps = [
]
msgfmt = find_program('msgfmt')
-po_dir = join_paths(meson.source_root(), 'po')
+po_dir = join_paths(meson.project_source_root(), 'po')
top_inc = include_directories('.')