diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-17 18:07:30 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-17 18:07:30 +0000 |
commit | 205d4e61e6a0de7df73be2720f27651bc4370f10 (patch) | |
tree | c0c5859b8b8182c0c11e2662cdead1ca10fc38d8 /Config.h | |
parent | aff4d641bbe3d09c96a5addefbd6e48f8067eb03 (diff) | |
download | busybox-w32-205d4e61e6a0de7df73be2720f27651bc4370f10.tar.gz busybox-w32-205d4e61e6a0de7df73be2720f27651bc4370f10.tar.bz2 busybox-w32-205d4e61e6a0de7df73be2720f27651bc4370f10.zip |
Add in a new FEATURE (off by default) BB_FEATURE_SH_BUILTINS_ALWAYS_WIN.
Make the sh default to using external commands when a path is provided.
git-svn-id: svn://busybox.net/trunk/busybox@1321 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -234,6 +234,14 @@ | |||
234 | //among other thing. | 234 | //among other thing. |
235 | #define BB_FEATURE_SH_STANDALONE_SHELL | 235 | #define BB_FEATURE_SH_STANDALONE_SHELL |
236 | // | 236 | // |
237 | //When this is enabled, busybox shell builtins can be called using full path | ||
238 | //names. This causes builtins (which includes every single busybox command | ||
239 | //when you enable BB_FEATURE_SH_STANDALONE_SHELL) to override real commands on | ||
240 | //the filesystem. When this is enabled, if you run /bin/cat, it will use | ||
241 | //BusyBox cat even if /bin/cat exists on the filesystem and is _not_ busybox. | ||
242 | //Some systems want this, others do not. Choose wisely. :-) | ||
243 | //BB_FEATURE_SH_BUILTINS_ALWAYS_WIN | ||
244 | // | ||
237 | // Enable tab completion in the shell (not yet | 245 | // Enable tab completion in the shell (not yet |
238 | // working very well -- so don't turn this on) | 246 | // working very well -- so don't turn this on) |
239 | //#define BB_FEATURE_SH_TAB_COMPLETION | 247 | //#define BB_FEATURE_SH_TAB_COMPLETION |