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 --- coreutils/env.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/env.c') diff --git a/coreutils/env.c b/coreutils/env.c index 04279f3..7be0c63 100644 --- a/coreutils/env.c +++ b/coreutils/env.c @@ -81,7 +81,7 @@ int env_main(int argc, char** argv) } if (*argv) { - execvp(*argv, argv); + BB_EXECVP(*argv, argv); /* SUSv3-mandated exit codes. */ xfunc_error_retval = (errno == ENOENT) ? 127 : 126; bb_perror_msg_and_die("%s", *argv); -- cgit v1.1