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-a3cf2f4a3e73
This commit is contained in:
Jo-Philipp Wich
2013-07-16 10:35:40 +00:00
parent 21976b748b
commit e9abe75648

View File

@@ -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;
}
}