diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2016-05-09 23:59:26 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2016-12-01 00:15:55 +0100 |
commit | c9064dde98b2a91be6c9f23c37168c7468fd873f (patch) | |
tree | 12227b5a793b22c71762aa3ac90c2ebc473f442c | |
parent | c87c643ca19b731ee6c53fbea72af8312ca6a725 (diff) | |
download | mcron-c9064dde98b2a91be6c9f23c37168c7468fd873f.tar.gz mcron-c9064dde98b2a91be6c9f23c37168c7468fd873f.tar.bz2 mcron-c9064dde98b2a91be6c9f23c37168c7468fd873f.zip |
build: Fix prerequisite for mcron man page.
* Makefile.am (doc/mcron.1): Depend on the Guile script instead of the C
wrapper.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index dc47945..ec98ef3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -145,7 +145,7 @@ TEXI2DVI = texi2dvi -I doc # Not part of formal package building, but a rule for manual use to get the # elemental man page. Will only work once the mcron program is installed. -doc/mcron.1: src/mcron.c +doc/mcron.1: src/mcron/scripts/mcron.scm -$(AM_V_HELP2MAN)$(MKDIR_P) `dirname "$@"` ; \ $(top_builddir)/pre-inst-env $(HELP2MAN) \ -n 'a program to run tasks at regular (or not) intervals' \ |