summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-04-24 16:23:46 +0200
committerMarius Bakke <mbakke@fastmail.com>2020-04-24 16:24:01 +0200
commit7dd05396ef4539165f955d9ab57225091f801ce9 (patch)
tree0d8ed549668660c4b3c081ff7f71b853d731138d
parent40fd909e3ddee2c46a27a4fe92ed49d3e7ffb413 (diff)
downloadpatches-7dd05396ef4539165f955d9ab57225091f801ce9.tar
patches-7dd05396ef4539165f955d9ab57225091f801ce9.tar.gz
doc: Ensure guix-daemon is built before creating guix-daemon.1.
* doc/local.mk ($(srcdir)/%D%/guix-daemon.1): Depend on guix-daemon$(EXEEXT) instead of its source code.
-rw-r--r--doc/local.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/local.mk b/doc/local.mk
index ddda01d5f3..f8709bb3a4 100644
--- a/doc/local.mk
+++ b/doc/local.mk
@@ -236,7 +236,7 @@ if !CROSS_COMPILING
dist_man1_MANS += $(srcdir)/%D%/guix-daemon.1
-$(srcdir)/%D%/guix-daemon.1: nix/nix-daemon/guix-daemon.cc
+$(srcdir)/%D%/guix-daemon.1: guix-daemon$(EXEEXT)
-$(AM_V_HELP2MAN)$(gen_man) --output="$@" `basename "$@" .1`
endif