diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-17 18:25:26 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-11-17 18:25:26 +0000 |
commit | efe980aa9a42b1c8235ed52ce0298e096c282e96 (patch) | |
tree | 1576263a85553b8bd1b3efd08a53b5c2898efb8b /Config.h | |
parent | af44a162d1d0842fb94ba37eb68ef48365b4db28 (diff) | |
download | busybox-w32-efe980aa9a42b1c8235ed52ce0298e096c282e96.tar.gz busybox-w32-efe980aa9a42b1c8235ed52ce0298e096c282e96.tar.bz2 busybox-w32-efe980aa9a42b1c8235ed52ce0298e096c282e96.zip |
Fix up builtin overrides, and hack in the binary search for finding
matching applets into the shell.
git-svn-id: svn://busybox.net/trunk/busybox@1323 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -235,11 +235,11 @@ | |||
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 | 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 | 238 | //names. This causes builtins (i.e. every single busybox command) to override |
239 | //when you enable BB_FEATURE_SH_STANDALONE_SHELL) to override real commands on | 239 | //real commands on the filesystem. For example, if you run run /bin/cat, it |
240 | //the filesystem. When this is enabled, if you run /bin/cat, it will use | 240 | //will use BusyBox cat even if /bin/cat exists on the filesystem and is _not_ |
241 | //BusyBox cat even if /bin/cat exists on the filesystem and is _not_ busybox. | 241 | //busybox. Some systems want this, others do not. Choose wisely. :-) This |
242 | //Some systems want this, others do not. Choose wisely. :-) | 242 | //only has meaning when BB_FEATURE_SH_STANDALONE_SHELL is enabled. |
243 | //BB_FEATURE_SH_BUILTINS_ALWAYS_WIN | 243 | //BB_FEATURE_SH_BUILTINS_ALWAYS_WIN |
244 | // | 244 | // |
245 | // Enable tab completion in the shell (not yet | 245 | // Enable tab completion in the shell (not yet |