mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-02 04:12:29 +00:00
scripts/package-metadata.pl: sort dependency keys
This makes it easier to keep track of changes in the generated output, when the script is modified Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
7049ea9e95
commit
33303b5cec
@ -232,7 +232,7 @@ sub mconf_depends {
|
||||
mconf_depends($pkgname, $tdep->[0], 1, $dep, $seen, $tdep->[1]);
|
||||
}
|
||||
|
||||
foreach my $depend (keys %$dep) {
|
||||
foreach my $depend (sort keys %$dep) {
|
||||
my $m = $dep->{$depend};
|
||||
$res .= "\t\t$m $depend\n";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user