From e268ff1ba2a2a5edf8652eb1792b99287960926d Mon Sep 17 00:00:00 2001 From: Stefan Sauer Date: Wed, 26 Feb 2014 11:40:08 +0100 Subject: [PATCH] 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 --- docs/Makefile.am | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 2dacd31..11792cb 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -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 = \ -- 2.7.4