Skip to content
Snippets Groups Projects
Commit edeee3ac authored by Felix Fietkau's avatar Felix Fietkau
Browse files

metadata.pl: fix menuconfig code for package features

SVN-Revision: 18386
parent 0b69c5e5
No related branches found
No related tags found
No related merge requests found
...@@ -549,9 +549,10 @@ EOF ...@@ -549,9 +549,10 @@ EOF
print <<EOF; print <<EOF;
config FEATURE_$feature->{name} config FEATURE_$feature->{name}
bool "$feature->{title}" bool "$feature->{title}"
help
$feature->{description}
EOF EOF
$feature->{description} =~ /\w/ and do {
print "\t\thelp\n".$feature->{description}."\n";
};
} }
print "endchoice\n" print "endchoice\n"
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment