mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
docs: install prebuilt plugin docs if gtk-doc is disabled
Sync to the Makefile.am from gst-plugin-base where it is done right. Fixes #725034
This commit is contained in:
parent
c10d042a0d
commit
a000c6c518
1 changed files with 8 additions and 4 deletions
|
@ -1,10 +1,14 @@
|
|||
if ENABLE_GTK_DOC
|
||||
GTK_DOC_DIRS = plugins
|
||||
if ENABLE_PLUGIN_DOCS
|
||||
PLUGIN_DOCS_DIRS = plugins
|
||||
else
|
||||
GTK_DOC_DIRS =
|
||||
PLUGIN_DOCS_DIRS =
|
||||
endif
|
||||
else
|
||||
PLUGIN_DOCS_DIRS = plugins
|
||||
endif
|
||||
|
||||
SUBDIRS = $(GTK_DOC_DIRS)
|
||||
SUBDIRS = $(PLUGIN_DOCS_DIRS)
|
||||
DIST_SUBDIRS = plugins
|
||||
|
||||
EXTRA_DIST = \
|
||||
|
@ -12,4 +16,4 @@ EXTRA_DIST = \
|
|||
version.entities.in
|
||||
|
||||
upload:
|
||||
make -C plugins upload
|
||||
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|
||||
|
|
Loading…
Reference in a new issue