diff options
author | Michael Biebl <biebl@debian.org> | 2013-03-04 23:20:16 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2013-03-04 23:23:06 +0100 |
commit | d51167c6268d11f02c2676693a8e9dc1b628cdbb (patch) | |
tree | 88436f2b2f06cd7c8323402d9f6bc8de7cc67d99 /Makefile-man.am | |
parent | 135b5212d4234f5b75c9b86c9f924047c8d07589 (diff) |
build-sys: build and install systemd-coredumpctl conditionally
If coredump support is disabled via --disable-coredump, do not build and
install the systemd-coredumpctl binary and man page.
Diffstat (limited to 'Makefile-man.am')
-rw-r--r-- | Makefile-man.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile-man.am b/Makefile-man.am index e095c3e765..8d48ee05ef 100644 --- a/Makefile-man.am +++ b/Makefile-man.am @@ -50,7 +50,6 @@ MANPAGES += \ man/systemd-cat.1 \ man/systemd-cgls.1 \ man/systemd-cgtop.1 \ - man/systemd-coredumpctl.1 \ man/systemd-delta.1 \ man/systemd-detect-virt.1 \ man/systemd-fsck@.service.8 \ @@ -303,6 +302,14 @@ MANPAGES_ALIAS += \ endif +if ENABLE_COREDUMP +MANPAGES += \ + man/systemd-coredumpctl.1 +MANPAGES_ALIAS += \ + # + +endif + if ENABLE_HOSTNAMED MANPAGES += \ man/hostnamectl.1 \ |