aboutsummaryrefslogtreecommitdiff
path: root/shell/lash.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 23:03:30 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-10 23:03:30 +0000
commitaf0dfd1b9fbb1ba8ccba9f220018e6819180149e (patch)
treed0dd803ca8b6c70521895fd5ec71ef532861b8e4 /shell/lash.c
parentca47f469046173726e352cef459929bd27d132bd (diff)
downloadbusybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.tar.gz
busybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.tar.bz2
busybox-w32-af0dfd1b9fbb1ba8ccba9f220018e6819180149e.zip
Rename two config options:
FEATURE_SH_STANDALONE_SHELL => FEATURE_SH_STANDALONE FEATURE_EXEC_PREFER_APPLETS => FEATURE_PREFER_APPLETS Make SH_STANDALONE depend on PREFER_APPLETS. getopt.c: more randomconfig-induced fixes git-svn-id: svn://busybox.net/trunk/busybox@18394 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/lash.c')
-rw-r--r--shell/lash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/lash.c b/shell/lash.c
index f9d9deb62..99e2b1f06 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -1164,7 +1164,7 @@ static int pseudo_exec(struct child_prog *child)
1164 * /bin/foo invocation will fork and exec /bin/foo, even if 1164 * /bin/foo invocation will fork and exec /bin/foo, even if
1165 * /bin/foo is a symlink to busybox. 1165 * /bin/foo is a symlink to busybox.
1166 */ 1166 */
1167 if (ENABLE_FEATURE_SH_STANDALONE_SHELL) { 1167 if (ENABLE_FEATURE_SH_STANDALONE) {
1168 char **argv_l = child->argv; 1168 char **argv_l = child->argv;
1169 int argc_l; 1169 int argc_l;
1170 1170