diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-07 20:27:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-02-07 20:27:03 +0000 |
commit | 710694f0e5bae17ceba8c6f2694b856d6eab1c63 (patch) | |
tree | 4da9a21c5f9bbbf3e8cadef77f67285cabd304c4 /libbb | |
parent | d4eda22d0c5c23b637309f3bd9b6dd84f9235328 (diff) | |
download | busybox-710694f0e5bae17ceba8c6f2694b856d6eab1c63.tar.gz |
fix #ifdef ENABLE_xxx -> #if
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/execable.c | 2 |
1 files changed, 1 insertions, 1 deletions
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[]) |