metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37369 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
21976b748b
commit
e9abe75648
|
@ -616,7 +616,7 @@ EOF
|
|||
}
|
||||
print_package_features();
|
||||
print_package_config_category 'Base system';
|
||||
foreach my $cat (keys %category) {
|
||||
foreach my $cat (sort {uc($a) cmp uc($b)} keys %category) {
|
||||
print_package_config_category $cat;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue