diff options
author | Federico Mena Quintero <federico@gnome.org> | 2019-08-08 12:50:56 -0500 |
---|---|---|
committer | Federico Mena Quintero <federico@gnome.org> | 2019-08-08 12:50:56 -0500 |
commit | 28c224d2c491ca39e27e0e2b363aa22719fdf16f (patch) | |
tree | 0e87c972b452b1cccc2188d4fcb21e315dd79e68 /doc | |
parent | 2478d1142eab68ec9a5664f9b8919075e5717c86 (diff) | |
download | librsvg-28c224d2c491ca39e27e0e2b363aa22719fdf16f.tar.gz |
doc/Makefile.am: Add include path builddir/librsvg
This is so that the generated rsvg-scan.c can find librsvg-features.h.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 841ec3a1..f412e2bd 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -94,12 +94,13 @@ expand_content_files = # signals and properties. # e.g. GTKDOC_CFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) -GTKDOC_CFLAGS = \ - -I$(top_srcdir) \ - -I$(top_builddir) \ - $(LIBRSVG_CFLAGS) \ - $(WARN_CFLAGS) \ - $(DISABLE_DEPRECATED) \ +GTKDOC_CFLAGS = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + -I$(top_builddir)/librsvg \ + $(LIBRSVG_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED) \ $(AM_CFLAGS) GTKDOC_LIBS = \ |