mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
fix docs build fix make distcheck
Original commit message from CVS: fix docs build fix make distcheck
This commit is contained in:
parent
1f6bda5395
commit
a0e8e56d8d
9 changed files with 13 additions and 12 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-12-02 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* fix documentation build using docbook2..., works on fc1 and rh9
|
||||
* fix distcheck on fc1
|
||||
|
||||
2003-11-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* put GST_CACHE_DIR in config.h, as ordered by iain
|
||||
|
|
|
@ -616,10 +616,8 @@ testsuite/refcounting/Makefile
|
|||
testsuite/tags/Makefile
|
||||
testsuite/threads/Makefile
|
||||
examples/Makefile
|
||||
examples/autoplug/Makefile
|
||||
examples/cutter/Makefile
|
||||
examples/helloworld/Makefile
|
||||
examples/helloworld2/Makefile
|
||||
examples/launch/Makefile
|
||||
examples/manual/Makefile
|
||||
examples/mixer/Makefile
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
]>
|
||||
|
||||
<article class="faq">
|
||||
<article class="faq" id="index">
|
||||
<articleinfo>
|
||||
<title>GStreamer FAQ</title>
|
||||
<abstract>
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
|
||||
if DOC_HTML
|
||||
install-data-local: html
|
||||
mkdir -p $(docdir)
|
||||
cp -pr $(HTML_DAT) $(docdir)
|
||||
$(mkinstalldirs) $(DESTDIR)$(docdir)
|
||||
cp -pr $(HTML_DAT) $(DESTDIR)$(docdir)
|
||||
|
||||
uninstall-local:
|
||||
for part in $(HTML_DAT); do rm -rf $(docdir)/$$part; done
|
||||
rmdir $(docdir)
|
||||
for part in $(HTML_DAT); do rm -rf $(DESTDIR)$(docdir)/$$part; done
|
||||
rmdir $(DESTDIR)$(docdir)
|
||||
else
|
||||
install-data-local:
|
||||
uninstall-local:
|
||||
|
|
|
@ -95,7 +95,7 @@ html/index.html: $(BUILDDIR)/$(MAIN) $(PNG_BUILT) $(FIG_SRC)
|
|||
@echo "*** Generating HTML output ***"
|
||||
@-mkdir -p html
|
||||
@cp -f $(srcdir)/../image-png $(BUILDDIR)/image.entities
|
||||
@cd $(BUILDDIR) && docbook2html -o ../html $(MAIN)
|
||||
@cd $(BUILDDIR) && docbook2html -o ../html -V '%use-id-as-filename%' $(MAIN)
|
||||
@test "x$(CSS)" != "x" && \
|
||||
echo "Copying .css files: $(CSS)" && \
|
||||
cp $(srcdir)/$(CSS) html
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<!ENTITY GstLibRef "<emphasis>GStreamer Library Reference</emphasis>">
|
||||
]>
|
||||
|
||||
<book id="book-gst-plugin-writers-guide">
|
||||
<book id="index">
|
||||
&TITLEPAGE;
|
||||
|
||||
<!-- ############# part ############### -->
|
||||
|
|
|
@ -6,7 +6,6 @@ endif
|
|||
|
||||
dirs = \
|
||||
helloworld \
|
||||
helloworld2 \
|
||||
queue \
|
||||
queue2 \
|
||||
queue3 \
|
||||
|
|
|
@ -10,7 +10,7 @@ libgstspider_la_CFLAGS = $(GST_CFLAGS)
|
|||
libgstspider_la_LIBADD =
|
||||
libgstspider_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = gstspider.h gstsearchfuncs.h
|
||||
noinst_HEADERS = gstspider.h gstspideridentity.h gstsearchfuncs.h
|
||||
|
||||
noinst_PROGRAMS = spidertest
|
||||
|
||||
|
|
|
@ -6,7 +6,6 @@ endif
|
|||
|
||||
dirs = \
|
||||
helloworld \
|
||||
helloworld2 \
|
||||
queue \
|
||||
queue2 \
|
||||
queue3 \
|
||||
|
|
Loading…
Reference in a new issue