summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-04-05 15:04:43 -0700
committerStephen Gallagher <sgallagh@redhat.com>2012-04-05 15:22:00 -0700
commitb0da77f315ccf7e21e7034ff67f64a2b511c4a75 (patch)
tree5761c688f12d193a0bab5ea494d0decdd7a81d7e
parent19274969b61c65a1d8f9b6e3002ae06a7f2cc1a2 (diff)
downloadsssd-b0da77f315ccf7e21e7034ff67f64a2b511c4a75.tar.gz
sssd-b0da77f315ccf7e21e7034ff67f64a2b511c4a75.tar.xz
sssd-b0da77f315ccf7e21e7034ff67f64a2b511c4a75.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.am2
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