diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2020-04-14 13:27:26 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2020-04-14 13:29:14 +0100 |
commit | 0896d630769ae8f44f13d8e7784165601a140e80 (patch) | |
tree | fcc824bb6cf5a50b4d3fc03ccd86eaee789dfb0f /docs/meson.build | |
parent | 2f6d743908a35aea7e984a4db3f3dd8cf26577de (diff) | |
download | pango-0896d630769ae8f44f13d8e7784165601a140e80.tar.gz |
build: Do not use source/build_root functions
Meson has the include_directories() object to specify inclusion paths
that refer to both the source and build directories.
Diffstat (limited to 'docs/meson.build')
-rw-r--r-- | docs/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/meson.build b/docs/meson.build index a99448af..e5b7ba7d 100644 --- a/docs/meson.build +++ b/docs/meson.build @@ -72,8 +72,7 @@ docpath = join_paths(pango_datadir, 'gtk-doc', 'html') gnome.gtkdoc('pango', main_xml: 'pango-docs.sgml', src_dir: [ - join_paths(meson.source_root(), 'pango'), - join_paths(meson.build_root(), 'pango'), + pango_inc, ], dependencies: docdeps, gobject_typesfile: configure_file(input: 'pango.types.in', |