gplugin/gplugin

Use meson.project_build_root instead of meson.build_root

2021-10-07, Elliott Sales de Andrade
ad3ceac87107
Parents 65d7732cb6bc
Children c24d77cbf268
Use meson.project_build_root instead of meson.build_root

The former is new in 0.56, but we require 0.58 and so the latter causes a
deprecation warning.
  • +1 -1
    meson.build
  • --- a/meson.build Wed Oct 06 04:39:28 2021 -0500
    +++ b/meson.build Thu Oct 07 23:11:51 2021 -0500
    @@ -58,7 +58,7 @@
    config_home = get_option('devenv-config-dir')
    if config_home == ''
    - config_home = meson.build_root() / 'config'
    + config_home = meson.project_build_root() / 'config'
    endif
    devenv.set('XDG_CONFIG_HOME', config_home)