1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 05:18:14 +02:00

metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config

SVN-Revision: 37369
This commit is contained in:
Jo-Philipp Wich 2013-07-16 10:35:40 +00:00
parent ccdd6e8215
commit 24f345dbe4

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