projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
25941ba
)
metadata.pl: fix menuconfig code for package features
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 12 Nov 2009 00:06:35 +0000
(
00:06
+0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 12 Nov 2009 00:06:35 +0000
(
00:06
+0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18386
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/metadata.pl
patch
|
blob
|
history
diff --git
a/scripts/metadata.pl
b/scripts/metadata.pl
index
26d878c
..
54ac063
100755
(executable)
--- 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"
}
This page took
0.025911 seconds
and
4
git commands to generate.