build: make logger and its man page optional

There are other packages that provide a logger program like util-linux
We should respekt that

Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
This commit is contained in:
Lars Wendler
2019-11-18 12:08:26 +01:00
parent b22e1339c9
commit 227008ec0f
3 changed files with 22 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
dist_man1_MANS = logger.1
dist_man1_MANS =
dist_man3_MANS = syslogp.3
dist_man5_MANS = syslog.conf.5
dist_man8_MANS = syslogd.8
@@ -6,3 +6,7 @@ dist_man8_MANS = syslogd.8
if ENABLE_KLOGD
dist_man8_MANS += klogd.8
endif
if ENABLE_LOGGER
dist_man1_MANS += logger.1
endif