summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-07-29 04:07:20 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2022-07-29 04:07:20 -0500
commit4e356a441dd56088307729e6d5d7824f9e81419a (patch)
treee8352cc9cabe3f1720104989507c4de0a77509ea /doc
parent8f22c2de3ad8f8a066cd6ce6c571f2aa106f4de1 (diff)
downloadpidgin-4e356a441dd56088307729e6d5d7824f9e81419a.tar.gz
Fix Meson deprecation from Facebook docs
Fixes this deprecation: ``` ../doc/reference/protocols/facebook/meson.build:25: WARNING: Project targeting '>=0.58.0' but tried to use feature deprecated since '0.56.0': meson.build_root. use meson.project_build_root() or meson.global_build_root() instead. ``` Testing Done: Reconfigured and saw no warning. Reviewed at https://reviews.imfreedom.org/r/1555/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/protocols/facebook/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/reference/protocols/facebook/meson.build b/doc/reference/protocols/facebook/meson.build
index 4108394dad..32cae7c38d 100644
--- a/doc/reference/protocols/facebook/meson.build
+++ b/doc/reference/protocols/facebook/meson.build
@@ -22,7 +22,7 @@ if get_option('doc')
'--no-namespace-dir',
'--content-dir=@0@'.format(meson.current_source_dir()),
'--add-include-path=@0@'.format(meson.global_build_root() / 'subprojects/gplugin/gplugin'),
- '--add-include-path=@0@'.format(meson.build_root() / 'libpurple'),
+ '--add-include-path=@0@'.format(meson.global_build_root() / 'libpurple'),
'@INPUT1@'
],
depends: [ libpurple_gir[0] ],