metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config
SVN-Revision: 37369
This commit is contained in:
parent
ccdd6e8215
commit
24f345dbe4
|
@ -616,7 +616,7 @@ EOF
|
||||||
}
|
}
|
||||||
print_package_features();
|
print_package_features();
|
||||||
print_package_config_category 'Base system';
|
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;
|
print_package_config_category $cat;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue