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

SVN-Revision: 37369
master
Jo-Philipp Wich 11 years ago
parent ccdd6e8215
commit 24f345dbe4
  1. 2
      scripts/metadata.pl

@ -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…
Cancel
Save