From: Miloslav Trmač Date: Tue, 9 Apr 2013 23:28:03 +0000 (+0200) Subject: Fix DOC_SOURCE_DIR for builddir != srcdir X-Git-Tag: 0.111~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=46b99351ed8e3c8690a3f346a1999d8f34c25111;p=platform%2Fupstream%2Fpolkit.git Fix DOC_SOURCE_DIR for builddir != srcdir This snippet comes from gtk-doc 1.18 examples/Makefile.am; we might want to update all of the file but that's not strictly necessary. https://bugs.freedesktop.org/show_bug.cgi?id=63479 --- diff --git a/docs/polkit/Makefile.am b/docs/polkit/Makefile.am index bc90178..e0b669a 100644 --- a/docs/polkit/Makefile.am +++ b/docs/polkit/Makefile.am @@ -12,8 +12,11 @@ DOC_MAIN_SGML_FILE=polkit-1-docs.xml # Extra options to supply to gtkdoc-scan SCAN_OPTIONS=--ignore-headers=config.h -# The directory containing the source code. Relative to $(srcdir) -DOC_SOURCE_DIR=../../src +# Directories containing the source code. +# gtk-doc will search all .c and .h files beneath these paths +# for inline comments documenting functions and macros. +# e.g. DOC_SOURCE_DIR=$(top_srcdir)/gtk $(top_srcdir)/gdk +DOC_SOURCE_DIR=$(top_srcdir)/src # Used for dependencies HFILE_GLOB=$(top_srcdir)/src/polkit*/*.h