svn commit: trunk/busybox/scripts

aldot at busybox.net aldot at busybox.net
Fri May 5 14:05:24 UTC 2006


Author: aldot
Date: 2006-05-05 07:05:21 -0700 (Fri, 05 May 2006)
New Revision: 15004

Log:
- ignore missing helptext for options which are not selectable.


Modified:
   trunk/busybox/scripts/checkhelp.awk


Changeset:
Modified: trunk/busybox/scripts/checkhelp.awk
===================================================================
--- trunk/busybox/scripts/checkhelp.awk	2006-05-05 11:55:53 UTC (rev 15003)
+++ trunk/busybox/scripts/checkhelp.awk	2006-05-05 14:05:21 UTC (rev 15004)
@@ -23,6 +23,9 @@
 /^[[:space:]]*help[[:space:]]*$/ {
 	help[pos] = 1;
 }
+/^[[:space:]]*bool[[:space:]]*$/ {
+	help[pos] = 1; # ignore options which are not selectable
+}
 BEGIN {
 	pos = -1;
 	is_choice = 0;




More information about the busybox-cvs mailing list