diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-07-16 10:35:40 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-07-16 10:35:40 +0000 |
commit | 24f345dbe40bce8a6d653769c399d930db1bd70f (patch) | |
tree | 5365a49ee70135af691e5e753890fe69714baca6 /scripts/metadata.pl | |
parent | ccdd6e82159c9c08e12e4095cb946455209fa36b (diff) | |
download | upstream-24f345dbe40bce8a6d653769c399d930db1bd70f.tar.gz upstream-24f345dbe40bce8a6d653769c399d930db1bd70f.tar.bz2 upstream-24f345dbe40bce8a6d653769c399d930db1bd70f.zip |
metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config
SVN-Revision: 37369
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 17040d9e36..41f4690f2d 100755 --- a/scripts/metadata.pl +++ b/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; } } |