diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-04 10:38:45 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-09-04 10:38:45 +0000 |
commit | c484a2cfaa3e51cac56b995ea5ec7c0a96f4c08b (patch) | |
tree | dc47480979956e6bb5575b6d7e9decdf7ffc89eb | |
parent | 9081dffc5f2a1d8bcc28831c49be3f7f06b4ecf4 (diff) |
fix distcheckRELEASE-0_8_11
Original commit message from CVS:
* common/gtk-doc-plugins.mak:
* docs/plugins/Makefile.am:
fix distcheck
* gst/audioresample/resample.c:
fix wrong docstring
-rw-r--r-- | gtk-doc-plugins.mak | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/gtk-doc-plugins.mak b/gtk-doc-plugins.mak index 0c79c0c..9cd89d9 100644 --- a/gtk-doc-plugins.mak +++ b/gtk-doc-plugins.mak @@ -19,6 +19,7 @@ EXTRA_DIST = \ $(extra_files) \ $(HTML_IMAGES) \ $(DOC_MAIN_SGML_FILE) \ + $(DOC_MODULE).types \ $(DOC_OVERRIDES) \ $(DOC_MODULE)-sections.txt @@ -118,12 +119,18 @@ inspect-update: # FIXME: inspect.timestamp should be written to by gst-xmlinspect.py # IFF the output changed; see gtkdoc-mktmpl inspect-build.stamp: inspect - $(INSPECT_ENVIRONMENT) $(PYTHON) \ - $(top_srcdir)/common/gst-xmlinspect.py $(PACKAGE) inspect - $(INSPECT_ENVIRONMENT) $(PYTHON) \ - $(top_srcdir)/common/mangle-tmpl.py tmpl - echo -n "timestamp" > inspect.stamp - touch inspect-build.stamp + @echo '*** Rebuilding plugin inspection files ***' + if test x"$(srcdir)" != x. ; then \ + cp $(srcdir)/inspect.stamp . ; \ + cp $(srcdir)/inspect-build.stamp . ; \ + else \ + $(INSPECT_ENVIRONMENT) $(PYTHON) \ + $(top_srcdir)/common/gst-xmlinspect.py $(PACKAGE) inspect; \ + $(INSPECT_ENVIRONMENT) $(PYTHON) \ + $(top_srcdir)/common/mangle-tmpl.py tmpl; \ + echo -n "timestamp" > inspect.stamp; \ + touch inspect-build.stamp; \ + fi inspect.stamp: inspect-build.stamp @true @@ -135,7 +142,7 @@ inspect.stamp: inspect-build.stamp sgml-build.stamp: tmpl.stamp inspect.stamp $(CFILE_GLOB) $(top_srcdir)/common/plugins.xsl @echo '*** Building XML ***' @-mkdir -p xml - @for a in inspect/*.xml; do \ + @for a in $(srcdir)/inspect/*.xml; do \ xsltproc --stringparam module $(MODULE) \ $(top_srcdir)/common/plugins.xsl $$a > xml/`basename $$a`; done gtkdoc-mkdb \ |