Fix documentation generation by specifying the sources
authorkov@webkit.org <kov@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 26 Sep 2011 13:35:51 +0000 (13:35 +0000)
committerkov@webkit.org <kov@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 26 Sep 2011 13:35:51 +0000 (13:35 +0000)
directory with $(top_srcdir).

Patch by Gustavo Noronha Silva <gustavo.noronha@collabora.com> on 2011-09-26
Reviewed by Xan Lopez.

* docs/GNUmakefile.am:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95948 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/gtk/ChangeLog
Source/WebKit/gtk/docs/GNUmakefile.am

index f5e4523..774fa26 100644 (file)
@@ -1,5 +1,14 @@
 2011-09-26  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
 
+        Fix documentation generation by specifying the sources
+        directory with $(top_srcdir).
+
+        Reviewed by Xan Lopez.
+
+        * docs/GNUmakefile.am:
+
+2011-09-26  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
+
         REGRESSION: Empathy crashes when switching theme
         https://bugs.webkit.org/show_bug.cgi?id=68600
 
index e067d3a..233b282 100644 (file)
@@ -18,7 +18,7 @@ DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
 # gtk-doc will search all .c & .h files beneath here for inline comments
 # documenting the functions and macros.
 # e.g. DOC_SOURCE_DIR=../../../gtk
-DOC_SOURCE_DIR=../webkit
+DOC_SOURCE_DIR=$(top_srcdir)/Source/WebKit/gtk/webkit
 
 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
 SCANGOBJ_OPTIONS="--type-init-func=g_thread_init(NULL);g_type_init()"