فهرست منبع

metadata.pl: fix menuconfig code for package features

SVN-Revision: 18386
Felix Fietkau 16 سال پیش
والد
کامیت
edeee3ac19
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      scripts/metadata.pl

+ 3 - 2
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"
 	}