diff --git a/include/libbb.h b/include/libbb.h index d7332714f..44bd6e09d 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -561,7 +561,7 @@ int exists_execable(const char *filename); execlp((find_applet_by_name(prog)) ? CONFIG_BUSYBOX_EXEC_PATH : prog, cmd, __VA_ARGS__) #else #define BB_EXECVP(prog,cmd) execvp(prog,cmd) -#define BB_EXECLP(prog,cmd,...) execvp(prog,cmd, __VA_ARGS__) +#define BB_EXECLP(prog,cmd,...) execlp(prog,cmd, __VA_ARGS__) #endif USE_DESKTOP(long long) int uncompress(int fd_in, int fd_out);