From 1d76f439da81d3a05f0e0fdde3f81ec56fb20836 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 6 Feb 2007 01:20:12 +0000 Subject: EXEC_PREFER_APPLETS support by Gabriel L. Somlo --- findutils/xargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'findutils/xargs.c') diff --git a/findutils/xargs.c b/findutils/xargs.c index c2060f804..44dbcdad0 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c @@ -60,7 +60,7 @@ static int xargs_exec(char *const *args) if (p == 0) { /* vfork -- child */ - execvp(args[0], args); + BB_EXECVP(args[0], args); exec_errno = errno; /* set error to shared stack */ _exit(1); } -- cgit v1.2.3