summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2015-01-19 16:43:17 +0100
committerStefan Sauer <ensonic@users.sf.net>2015-01-19 16:43:17 +0100
commit7668d62f93e3882877e4549091110159a3df9e66 (patch)
treeabb85183059502335eda461e369257af3451070c
parente91d36da262b6451014a9863e35e6131378946b6 (diff)
downloadgtk-doc-7668d62f93e3882877e4549091110159a3df9e66.tar.gz
docs: fix the example for other build systems
It is gtkdoc-mkdb that takes the --source-dir flag.
-rw-r--r--help/manual/C/index.docbook4
1 files changed, 2 insertions, 2 deletions
diff --git a/help/manual/C/index.docbook b/help/manual/C/index.docbook
index 50d0ce7..ac614b2 100644
--- a/help/manual/C/index.docbook
+++ b/help/manual/C/index.docbook
@@ -606,9 +606,9 @@ make
<programlisting><![CDATA[
DOC_MODULE=meep
// sources have changed
-gtkdoc-scan --module=$(DOC_MODULE) --source-dir=...
+gtkdoc-scan --module=$(DOC_MODULE) <source-dir>
gtkdoc-scangobj --module=$(DOC_MODULE)
-gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml
+gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --source-dir=<source-dir>
// xml files have changed
mkdir html
cd html && gtkdoc-mkhtml $(DOC_MODULE) ../meep-docs.xml