diff options
author | Rob Landley <rob@landley.net> | 2011-12-28 16:50:16 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2011-12-28 16:50:16 -0600 |
commit | d11887170a084171d3c17201c76f87b2567a8d65 (patch) | |
tree | ccb0f0710b8650993f42b6f4cf75623610caaa18 | |
parent | e614ee1e1dcf465eedf57184f95dab16f4dc40c2 (diff) | |
download | toybox-d11887170a084171d3c17201c76f87b2567a8d65.tar.gz |
Don't make toysh default to y until it does something useful.
-rw-r--r-- | toys/toysh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/toysh.c b/toys/toysh.c index d1ef683f..b2dd2bba 100644 --- a/toys/toysh.c +++ b/toys/toysh.c @@ -23,7 +23,7 @@ USE_TOYSH(NEWTOY(toysh, "c:i", TOYFLAG_BIN)) config TOYSH bool "sh (toysh)" - default y + default n help usage: sh [-c command] [script] |