diff options
author | Eric Andersen | 2004-04-07 09:34:27 +0000 |
---|---|---|
committer | Eric Andersen | 2004-04-07 09:34:27 +0000 |
commit | 075dd81c4460c027cf22800808993df3c07281f5 (patch) | |
tree | 92e71f0a400931ed106bfcedee0420b408adb282 /shell/lash.c | |
parent | b80c67e32c87bc674e84993f8d2d06e8f2c4228d (diff) | |
download | busybox-075dd81c4460c027cf22800808993df3c07281f5.zip busybox-075dd81c4460c027cf22800808993df3c07281f5.tar.gz |
Remove the CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN option. It was sortof
stupid and didn't work properly anyways.
Diffstat (limited to 'shell/lash.c')
-rw-r--r-- | shell/lash.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/shell/lash.c b/shell/lash.c index e20c2a2..b46cee8 100644 --- a/shell/lash.c +++ b/shell/lash.c @@ -1275,15 +1275,6 @@ static int pseudo_exec(struct child_prog *child) */ name = child->argv[0]; -#ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN - /* If you enable CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN, then - * if you run /bin/cat, it will use BusyBox cat even if - * /bin/cat exists on the filesystem and is _not_ busybox. - * Some systems want this, others do not. Choose wisely. :-) - */ - name = bb_get_last_path_component(name); -#endif - { char** argv_l=child->argv; int argc_l; |