From 0292655c4677e56a3fe41f70aa4ffcf9e016d0f2 Mon Sep 17 00:00:00 2001 From: Nicolas Barbey Date: Wed, 11 May 2016 17:46:17 +0200 Subject: [PATCH 2/2] fix build with autoconf 2.69. The build complains that EXTRA_DIST must be set before applying += to it. --- docs/reference/lasso/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/lasso/Makefile.am b/docs/reference/lasso/Makefile.am index 4e067a7..f3c570b 100644 --- a/docs/reference/lasso/Makefile.am +++ b/docs/reference/lasso/Makefile.am @@ -95,7 +95,7 @@ include $(top_srcdir)/gtk-doc.make # Other files to distribute # e.g. EXTRA_DIST += version.xml.in -EXTRA_DIST += lasso-sections.txt lasso-docs.sgml version.xml.in lasso.types.in style.css +EXTRA_DIST = lasso-sections.txt lasso-docs.sgml version.xml.in lasso.types.in style.css # Files not to distribute # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types -- 2.8.0