summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-07-16 10:35:40 +0000
committerJo-Philipp Wich <jow@openwrt.org>2013-07-16 10:35:40 +0000
commit24f345dbe40bce8a6d653769c399d930db1bd70f (patch)
tree5365a49ee70135af691e5e753890fe69714baca6 /scripts
parentccdd6e82159c9c08e12e4095cb946455209fa36b (diff)
downloadmtk-20170518-24f345dbe40bce8a6d653769c399d930db1bd70f.zip
mtk-20170518-24f345dbe40bce8a6d653769c399d930db1bd70f.tar.gz
mtk-20170518-24f345dbe40bce8a6d653769c399d930db1bd70f.tar.bz2
metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config
SVN-Revision: 37369
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/metadata.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index 17040d9..41f4690 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;
}
}