fix #ifdef ENABLE_xxx -> #if
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 7 Feb 2007 20:27:03 +0000 (20:27 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 7 Feb 2007 20:27:03 +0000 (20:27 -0000)
include/libbb.h
libbb/execable.c

index d6f08ff7372a1900f87c1651c3746a4e6c7ba9a2..d5a20d36593981836b20a83adb98cc74e9755c74 100644 (file)
@@ -561,7 +561,7 @@ int execable_file(const char *name);
 char *find_execable(const char *filename);
 int exists_execable(const char *filename);
 
-#ifdef ENABLE_FEATURE_EXEC_PREFER_APPLETS
+#if ENABLE_FEATURE_EXEC_PREFER_APPLETS
 int bb_execvp(const char *file, char *const argv[]);
 #define BB_EXECVP(prog,cmd) bb_execvp(prog,cmd)
 #define BB_EXECLP(prog,cmd,...) \
index 601c7539e6df7e1151461779bbca2ca24ecbf719..ee10c612318c92caef60b7febbef2e7a6e13d293 100644 (file)
@@ -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[])