diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2012-04-05 15:04:43 -0700 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-04-05 15:21:34 -0700 |
commit | 7dee0a3366c21ad06720176ca8aef8d6a6f0da90 (patch) | |
tree | 15921630f70de2edb556cf11fb324e7339d8fdc0 | |
parent | fcbaf4c73d3af215492f0907a6a3a46602a0e753 (diff) | |
download | sssd-7dee0a3366c21ad06720176ca8aef8d6a6f0da90.tar.gz sssd-7dee0a3366c21ad06720176ca8aef8d6a6f0da90.tar.xz sssd-7dee0a3366c21ad06720176ca8aef8d6a6f0da90.zip |
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
-rw-r--r-- | src/man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 9e569b4f0..8a6534cf1 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 |