mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-04 20:07:36 +00:00
meson: Don't use deprecated Dependency.get_pkgconfig_variable()
This function is deprecated since 0.56.0: WARNING: Project targeting '>= 0.56.0' but tried to use feature deprecated since '0.56.0': Dependency.get_pkgconfig_variable. use Dependency.get_variable(pkgconfig : ...) instead
This commit is contained in:
parent
0cadf24ed0
commit
112098405b
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ if get_option('gtk_doc')
|
|||
|
||||
subdir('xml')
|
||||
|
||||
glib_prefix = dependency('glib-2.0').get_pkgconfig_variable('prefix')
|
||||
glib_prefix = dependency('glib-2.0').get_variable(pkgconfig : 'prefix')
|
||||
glib_docpath = join_paths(glib_prefix, 'share', 'gtk-doc', 'html')
|
||||
docpath = join_paths(get_option('datadir'), 'gtk-doc', 'html')
|
||||
|
||||
|
|
Loading…
Reference in a new issue