diff options
author | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2017-08-07 21:39:49 +0200 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-08-13 11:26:03 +0100 |
commit | f29e83da063f73324a1e54dbc89d0b1d30ba4361 (patch) | |
tree | c79667d06a0ab75465ccfc00374de5d756c8ea1f /docs/reference | |
parent | 695a0a069cc128e4addc531f991695dc6027c025 (diff) | |
download | gdk-pixbuf-f29e83da063f73324a1e54dbc89d0b1d30ba4361.tar.gz |
meson: Use the right dependency for gtkdoc
The gdkpixbuf_dep pulls in the right include dir. This fixes the
following error:
gdk-pixbuf-scan.c:7:10: fatal error: gdk-pixbuf/gdk-pixbuf.h: No such file or directory
https://bugzilla.gnome.org/show_bug.cgi?id=785964
Diffstat (limited to 'docs/reference')
-rw-r--r-- | docs/reference/gdk-pixbuf/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/reference/gdk-pixbuf/meson.build b/docs/reference/gdk-pixbuf/meson.build index 535ab5284..b8d6f22b6 100644 --- a/docs/reference/gdk-pixbuf/meson.build +++ b/docs/reference/gdk-pixbuf/meson.build @@ -33,7 +33,7 @@ if get_option('with_docs') gdk_pixbuf_inc, gdkpixbuf_xlib_inc, ], - dependencies: gdk_pixbuf_deps, + dependencies: gdkpixbuf_dep, gobject_typesfile: 'gdk-pixbuf.types', scan_args: [ '--deprecated-guards="GDK_PIXBUF_ENABLE_BROKEN|GDK_PIXBUF_DISABLE_DEPRECATED"', |