[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: build: Don't build the guix-daemon man page when --disable-daemon
From: |
Ludovic Court�s |
Subject: |
01/02: build: Don't build the guix-daemon man page when --disable-daemon. |
Date: |
Tue, 16 Jun 2015 08:31:22 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit acec3beb0552ecb597d59904552a453d67896e9b
Author: Ludovic Courtès <address@hidden>
Date: Tue Jun 16 10:04:35 2015 +0200
build: Don't build the guix-daemon man page when --disable-daemon.
Fixes <http://bugs.gnu.org/20824>.
Reported by Mark H Weaver <address@hidden>.
* doc.am (dist_man1_MANS): Conditionalize doc/guix-daemon.1 on BUILD_DAEMON.
---
doc.am | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/doc.am b/doc.am
index de232a8..d4ca0fc 100644
--- a/doc.am
+++ b/doc.am
@@ -106,5 +106,11 @@ $(eval $(foreach subcommand,$(SUBCOMMANDS),
\
dist_man1_MANS = \
doc/guix.1 \
- doc/guix-daemon.1 \
$(SUBCOMMANDS:%=doc/guix-%.1)
+
+if BUILD_DAEMON
+
+dist_man1_MANS += \
+ doc/guix-daemon.1
+
+endif