From d25ff609ca23770f6b7d8045aac5effb10be621d Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Thu, 27 Mar 2008 18:02:53 +0100 Subject: [PATCH] [build/doc] Add support for STR_LIST Signed-off-by: Julien Danjou --- build-utils/extractoptsdoc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-utils/extractoptsdoc.py b/build-utils/extractoptsdoc.py index 14b96b68..cabd10fe 100755 --- a/build-utils/extractoptsdoc.py +++ b/build-utils/extractoptsdoc.py @@ -61,6 +61,8 @@ def sections_get(file): section_doc[option_title] += "This option must be an alignment value." elif line.startswith(" CFG_POSITION"): section_doc[option_title] += "This option must be a position value." + elif line.startswith(" CFG_STR_LIST"): + section_doc[option_title] += "This option must be string list." elif line.startswith(" CFG_STR"): section_doc[option_title] += "This option must be string value." elif line.startswith(" CFG_SEC"):