Fri, 29 Jul 2022 04:07:20 -0500
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/
| doc/reference/protocols/facebook/meson.build | file | annotate | diff | comparison | revisions |
--- a/doc/reference/protocols/facebook/meson.build Fri Jul 29 03:58:22 2022 -0500 +++ b/doc/reference/protocols/facebook/meson.build Fri Jul 29 04:07:20 2022 -0500 @@ -22,7 +22,7 @@ '--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] ],