summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKarel Zak2011-10-27 16:16:02 +0200
committerKarel Zak2011-11-03 12:32:50 +0100
commit4be753aa4ce37179aba8858d670a5e5cab4f6ed0 (patch)
tree8738a31b76482a1bb954e5872bb6e40214c6fd17 /configure.ac
parentbuild-sys: cleanup BUILD_ELVTUNE (diff)
downloadkernel-qcow2-util-linux-4be753aa4ce37179aba8858d670a5e5cab4f6ed0.tar.gz
kernel-qcow2-util-linux-4be753aa4ce37179aba8858d670a5e5cab4f6ed0.tar.xz
kernel-qcow2-util-linux-4be753aa4ce37179aba8858d670a5e5cab4f6ed0.zip
build-sys: cleanup BUILD_KILL, enable kill(1) by default
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 768f829c7..93662b4e8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -844,9 +844,11 @@ AM_CONDITIONAL(BUILD_ELVTUNE, test "x$build_elvtune" = xyes)
AC_ARG_ENABLE([kill],
- AS_HELP_STRING([--enable-kill], [build kill]),
- [], enable_kill=no
+ AS_HELP_STRING([--disable-kill], [do not build kill]),
+ [], enable_kill=check
)
+build_kill=yes
+UL_REQUIRES_LINUX([kill])
AM_CONDITIONAL(BUILD_KILL, test "x$enable_kill" = xyes)