summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Nicholson <dbn.lists@gmail.com>2008-05-22 06:11:38 -0700
committerDan Nicholson <dbn.lists@gmail.com>2008-05-22 06:12:51 -0700
commitd9f3d682eb02d08afbd29b0c588f90b414d2e482 (patch)
treee27d2877a94682fa421f0c85151e073f93dc4aaa
parente458c6e809cd2cf2112bbb885bec8d0b97af70a5 (diff)
xmlto only takes a single file, don't pass more
Minor nitpick so that only a single file, the first prerequisite, is passed to xmlto since it can only handle taking a single file. There was only one prerequisite anyway, so... not much to see here.
-rw-r--r--man/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 925886a..f16edb1 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -21,10 +21,10 @@ MAINTAINERCLEANFILES = \
$(pm_mans)
.xml.1:
- $(XMLTO) man $?
+ $(XMLTO) man $<
.xml.8:
- $(XMLTO) man $?
+ $(XMLTO) man $<
install-data-hook: install-man
@if test -f $(DESTDIR)$(mandir)/man8/pm-action.8; then \