diff options
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 26d878cc9e..54ac063902 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -549,9 +549,10 @@ EOF print <<EOF; config FEATURE_$feature->{name} bool "$feature->{title}" - help -$feature->{description} EOF + $feature->{description} =~ /\w/ and do { + print "\t\thelp\n".$feature->{description}."\n"; + }; } print "endchoice\n" } |