diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-05 14:05:21 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-05 14:05:21 +0000 |
commit | 0e413e53e9d77191ae3fd9663e5a90e906711fa6 (patch) | |
tree | 76b049fd64279f119cfee34613119c6138ed682f /scripts | |
parent | 4f7953cc3c9da5b19ae9995c45a7c943f66f01c5 (diff) | |
download | busybox-w32-0e413e53e9d77191ae3fd9663e5a90e906711fa6.tar.gz busybox-w32-0e413e53e9d77191ae3fd9663e5a90e906711fa6.tar.bz2 busybox-w32-0e413e53e9d77191ae3fd9663e5a90e906711fa6.zip |
- ignore missing helptext for options which are not selectable.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkhelp.awk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/checkhelp.awk b/scripts/checkhelp.awk index 1a7e0ea8e..85d0661a7 100755 --- a/scripts/checkhelp.awk +++ b/scripts/checkhelp.awk | |||
@@ -23,6 +23,9 @@ | |||
23 | /^[[:space:]]*help[[:space:]]*$/ { | 23 | /^[[:space:]]*help[[:space:]]*$/ { |
24 | help[pos] = 1; | 24 | help[pos] = 1; |
25 | } | 25 | } |
26 | /^[[:space:]]*bool[[:space:]]*$/ { | ||
27 | help[pos] = 1; # ignore options which are not selectable | ||
28 | } | ||
26 | BEGIN { | 29 | BEGIN { |
27 | pos = -1; | 30 | pos = -1; |
28 | is_choice = 0; | 31 | is_choice = 0; |