From 710694f0e5bae17ceba8c6f2694b856d6eab1c63 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 7 Feb 2007 20:27:03 +0000 Subject: fix #ifdef ENABLE_xxx -> #if --- libbb/execable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbb/execable.c') diff --git a/libbb/execable.c b/libbb/execable.c index 601c7539e..ee10c6123 100644 --- a/libbb/execable.c +++ b/libbb/execable.c @@ -60,7 +60,7 @@ int exists_execable(const char *filename) return 0; } -#ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS +#if ENABLE_FEATURE_EXEC_PREFER_APPLETS /* just like the real execvp, but try to launch an applet named 'file' first */ int bb_execvp(const char *file, char *const argv[]) -- cgit v1.2.3