From 6a795b4d7bf446f21b4d8daea2d4aa83b6815c52 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 21 Apr 2006 00:50:48 +0000 Subject: include package description in menuconfig help SVN-Revision: 3687 --- openwrt/scripts/gen_menuconfig.pl | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'openwrt/scripts/gen_menuconfig.pl') diff --git a/openwrt/scripts/gen_menuconfig.pl b/openwrt/scripts/gen_menuconfig.pl index 70e31a4..3f4476a 100755 --- a/openwrt/scripts/gen_menuconfig.pl +++ b/openwrt/scripts/gen_menuconfig.pl @@ -28,6 +28,8 @@ sub print_category($) { foreach my $depend (@{$pkg->{depends}}) { print "\t\tdepends PACKAGE_$depend\n"; } + print "\t\thelp\n"; + print $pkg->{description}; print "\n" } } @@ -66,11 +68,11 @@ while ($line = <>) { push @{$category{$1}->{$src}}, $pkg; }; $line =~ /^Description: \s*(.*)\s*$/ and do { - my $desc = $1; + my $desc = "\t\t$1\n\n"; my $line; - while (<>) { - last if /^@@/; - $desc .= $1; + while ($line = <>) { + last if $line =~ /^@@/; + $desc .= "\t\t$line"; } $pkg->{description} = $desc; } -- cgit v1.1