libkmod: fix integration with gtk-doc

It was failing to generate doc with recent version of gtk-doc

[kmod]$ ./bootstrap
libkmod/docs/gtk-doc.make:33: error: EXTRA_DIST must be set with '=' before using '+='
libkmod/docs/Makefile.am:29:   'libkmod/docs/gtk-doc.make' included from here
autoreconf: automake failed with exit status: 1

Just add an empty EXTRA_DIST so it works.
This commit is contained in:
Lucas De Marchi 2016-06-28 12:14:38 -03:00
parent e78fe15f0a
commit a0f6726e66

View File

@ -25,8 +25,10 @@ IGNORE_HFILES = libkmod-internal.h \
content_files = version.xml
EXTRA_DIST =
if ENABLE_GTK_DOC
include $(top_srcdir)/libkmod/docs/gtk-doc.make
else
EXTRA_DIST = libkmod-docs.xml libkmod-sections.txt
EXTRA_DIST += libkmod-docs.xml libkmod-sections.txt
endif