aboutsummaryrefslogtreecommitdiff
path: root/sh.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-12-06 19:07:39 +0000
committerEric Andersen <andersen@codepoet.org>2000-12-06 19:07:39 +0000
commit1d3523b7aa994aeb90fec5f281617abc3c9ce195 (patch)
treefe8bdbac5d62a111131ce9d29ffda136a309fd41 /sh.c
parent21adca750a9a1ae47da2bd058574795089406f25 (diff)
downloadbusybox-1d3523b7aa994aeb90fec5f281617abc3c9ce195.tar.gz
patch from Larry Doolittle to rename BB_FEATURE_SH_BUILTINS_ALWAYS_WIN
to the more pedantically correct BB_FEATURE_SH_APPLETS_ALWAYS_WIN.
Diffstat (limited to 'sh.c')
-rw-r--r--sh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sh.c b/sh.c
index 1524ef16b..f96720d46 100644
--- a/sh.c
+++ b/sh.c
@@ -1260,8 +1260,8 @@ static int runCommand(struct job *newJob, struct jobSet *jobList, int inBg, int
*/
search_applet.name = newJob->progs[i].argv[0];
-#ifdef BB_FEATURE_SH_BUILTINS_ALWAYS_WIN
- /* If you enable BB_FEATURE_SH_BUILTINS_ALWAYS_WIN, then
+#ifdef BB_FEATURE_SH_APPLETS_ALWAYS_WIN
+ /* If you enable BB_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. :-)