mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37369 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user