diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-25 20:11:22 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2012-05-29 09:32:33 +0200 |
commit | 626e877354ef7cd5211be30dfb2ab61efbdf2aba (patch) | |
tree | 27dc70d669e200fff27ba4259dfb27f50fe999ba | |
parent | 82054b1d99a982fd0d447d5f2cda6bd9b6ef429f (diff) | |
download | util-linux-626e877354ef7cd5211be30dfb2ab61efbdf2aba.tar.gz |
kill: Check the correct variable when configuring.
Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a1b1e9b7..eb67ada4 100644 --- a/configure.ac +++ b/configure.ac @@ -976,7 +976,7 @@ AC_ARG_ENABLE([kill], ) UL_BUILD_INIT([kill]) UL_REQUIRES_LINUX([kill]) -AM_CONDITIONAL(BUILD_KILL, test "x$enable_kill" = xyes) +AM_CONDITIONAL(BUILD_KILL, test "x$build_kill" = xyes) AC_ARG_ENABLE([last], |