From 53487a8d221d9568b6d2ea81e729456b084dcdf9 Mon Sep 17 00:00:00 2001 From: Kang-Che Sung Date: Mon, 9 Jan 2017 17:02:51 +0100 Subject: kill: need not build kill.c when ash's job control is off ash kill builtin depends on the job control config option. Signed-off-by: Kang-Che Sung Signed-off-by: Denys Vlasenko --- procps/kill.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'procps/kill.c') diff --git a/procps/kill.c b/procps/kill.c index 579c8e53c..7c0822542 100644 --- a/procps/kill.c +++ b/procps/kill.c @@ -285,8 +285,7 @@ int kill_main(int argc UNUSED_PARAM, char **argv) /* Looks like they want to do a kill. Do that */ while (arg) { -#if ENABLE_ASH || ENABLE_SH_IS_ASH || ENABLE_BASH_IS_ASH \ - || ENABLE_HUSH_KILL +#if ENABLE_ASH_JOB_CONTROL || ENABLE_HUSH_KILL /* * We need to support shell's "hack formats" of * " -PRGP_ID" (yes, with a leading space) -- cgit v1.2.3