From 4921b54f37125a58d5ea1a8aac886ae781517bc1 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 3 Feb 2007 02:17:41 +0000 Subject: Add BB_EXEC[LV]P() which encapsulate FEATURE_EXEC_PREFER_APPLETS (patch from Gabriel L. Somlo ) --- libbb/xfuncs.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libbb') diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index 601ff3f7e..3cbb0d3eb 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -184,17 +184,13 @@ pid_t spawn(char **argv) /* Why static? */ static int failed; pid_t pid; - const char *prog; // Be nice to nommu machines. failed = 0; pid = vfork(); if (pid < 0) return pid; if (!pid) { - prog = argv[0]; - if (ENABLE_FEATURE_EXEC_PREFER_APPLETS && find_applet_by_name(prog)) - prog = CONFIG_BUSYBOX_EXEC_PATH; - execvp(prog, argv); + BB_EXECVP(argv[0], argv); // We're sharing a stack with blocked parent, let parent know we failed // and then exit to unblock parent (but don't run atexit() stuff, which -- cgit v1.2.3