From 7dee0a3366c21ad06720176ca8aef8d6a6f0da90 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 5 Apr 2012 15:04:43 -0700 Subject: Fix building manpages in parallel build dirs Commit 2ebb3cf3d7062860343c3db1b53173c9c6547038 introduced an issue when building manpages in parallel build dirs. It unnecessarily modified the XML_DOC definition to restrict it to basing its contents on the man_MANS variable. Unfortunately, this means that when we entered the recursion in all-local we would be effectively turning XML_DOC into $(srcdir)/$(lang)/manpage.N.xml when we really only care that the source language XML document exists. This patch reverts that portion of the change. https://fedorahosted.org/sssd/ticket/1293 --- src/man/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/man') diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 9e569b4f..8a6534cf 100644 --- a/src/man/Makefile.am +++ b/src/man/Makefile.am @@ -93,7 +93,7 @@ EXTRA_DIST += \ $(POTFILE)\ $(PO4A_CONFIG) -XML_DOC = $(man_MANS:%=$(srcdir)/%.xml) $(wildcard $(srcdir)/include/*.xml) +XML_DOC = $(wildcard $(srcdir)/*.xml) $(wildcard $(srcdir)/include/*.xml) if HAVE_PO4A -- cgit