diff --git a/ChangeLog b/ChangeLog index 2d25bb13c2..e3e581c739 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-21 Felipe Contreras + + * docs/Makefile.am: + Fix installing plugin documentation when gtk-doc is disabled. + 2008-05-21 Felipe Contreras * gst-libs/gst/rtsp/Makefile.am: diff --git a/docs/Makefile.am b/docs/Makefile.am index 48f3112fb7..7ae8b996aa 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -1,8 +1,12 @@ +if ENABLE_GTK_DOC if ENABLE_PLUGIN_DOCS PLUGIN_DOCS_DIRS = plugins else PLUGIN_DOCS_DIRS = endif +else +PLUGIN_DOCS_DIRS = plugins +endif SUBDIRS = design libs $(PLUGIN_DOCS_DIRS) DIST_SUBDIRS = design libs plugins