aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-01-27 20:46:45 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2018-01-27 20:46:45 +0100
commit54c2111781e15b1c70bea43593aa67207f9ea118 (patch)
treea50b5eb078b20b57a5235134df80892d40e07ebd /shell/ash.c
parentf7e0feaf977ea5fef0f0819ba67a47dbef9b2e1a (diff)
downloadbusybox-w32-54c2111781e15b1c70bea43593aa67207f9ea118.tar.gz
busybox-w32-54c2111781e15b1c70bea43593aa67207f9ea118.tar.bz2
busybox-w32-54c2111781e15b1c70bea43593aa67207f9ea118.zip
hush: add HUSH_BASH_SOURCE_CURDIR config option, to be on par with ash
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index d2c937283..3fff88168 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -54,14 +54,14 @@
54//config:config ASH_BASH_SOURCE_CURDIR 54//config:config ASH_BASH_SOURCE_CURDIR
55//config: bool "'source' and '.' builtins search current directory after $PATH" 55//config: bool "'source' and '.' builtins search current directory after $PATH"
56//config: default n # do not encourage non-standard behavior 56//config: default n # do not encourage non-standard behavior
57//config: depends ASH_BASH_COMPAT 57//config: depends on ASH_BASH_COMPAT
58//config: help 58//config: help
59//config: This is not compliant with standards. Avoid if possible. 59//config: This is not compliant with standards. Avoid if possible.
60//config: 60//config:
61//config:config ASH_BASH_NOT_FOUND_HOOK 61//config:config ASH_BASH_NOT_FOUND_HOOK
62//config: bool "command_not_found_handle hook support" 62//config: bool "command_not_found_handle hook support"
63//config: default y 63//config: default y
64//config: depends ASH_BASH_COMPAT 64//config: depends on ASH_BASH_COMPAT
65//config: help 65//config: help
66//config: Enable support for the 'command_not_found_handle' hook function, 66//config: Enable support for the 'command_not_found_handle' hook function,
67//config: from GNU bash, which allows for alternative command not found 67//config: from GNU bash, which allows for alternative command not found