summaryrefslogtreecommitdiff
path: root/shell/msh.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-14 01:27:01 +0000
committerRob Landley <rob@landley.net>2006-06-14 01:27:01 +0000
commita34b48abe511b0e469d8b74f99902cc4df45d93d (patch)
treeaf3980cb1fc3ddea246f93d32d5d9f1dcb436b49 /shell/msh.c
parentc7ddefc0624173de6b74ee5b5b39cb2d354f5ae6 (diff)
downloadbusybox-w32-a34b48abe511b0e469d8b74f99902cc4df45d93d.tar.gz
busybox-w32-a34b48abe511b0e469d8b74f99902cc4df45d93d.tar.bz2
busybox-w32-a34b48abe511b0e469d8b74f99902cc4df45d93d.zip
Upgrade the standalone shell code to use CONFIG_BUSYBOX_EXEC_PATH.
Diffstat (limited to 'shell/msh.c')
-rw-r--r--shell/msh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/msh.c b/shell/msh.c
index 62e6b6e01..bd4b8fdb2 100644
--- a/shell/msh.c
+++ b/shell/msh.c
@@ -3306,8 +3306,7 @@ char *c, **v, **envp;
3306 /* We have to exec here since we vforked. Running 3306 /* We have to exec here since we vforked. Running
3307 * run_applet_by_name() won't work and bad things 3307 * run_applet_by_name() won't work and bad things
3308 * will happen. */ 3308 * will happen. */
3309 execve("/proc/self/exe", v, envp); 3309 execve(CONFIG_BUSYBOX_EXEC_PATH, v, envp);
3310 execve("busybox", v, envp);
3311 } 3310 }
3312#endif 3311#endif
3313 3312