revert r7373: does not actually do what it says on the tin - need to restructure the dump_config routine to enforce an explicit nested order.
git-svn-id: http://emdebian.org/svn/current@7382 563faec7-e20c-0410-992a-a66f704d0ccd
This commit is contained in:
parent
3e95c32799
commit
8c6ae7d6bd
1 changed files with 4 additions and 4 deletions
|
@ -923,7 +923,7 @@ sub dump_config {
|
|||
printf ("include:\t"._g("No included configuration files.\n"));
|
||||
}
|
||||
my @srcdump=();
|
||||
foreach my $src (keys %sources) {
|
||||
foreach my $src (sort keys %sources) {
|
||||
next if ((!grep(/^$src$/i, @aptsources)) or (!grep(/^$src$/i, @debootstrap)));
|
||||
push @srcdump, $sources{$src};
|
||||
}
|
||||
|
@ -938,8 +938,8 @@ sub dump_config {
|
|||
}
|
||||
}
|
||||
print "packages:\tPackages: ".join (", ", sort @long)."\n";
|
||||
print "suites: \tSuites: ".join (", ", values %suites)."\n";
|
||||
print "components\tComponents: ".join (", ", values %components)."\n";
|
||||
print "suites: \tSuites: ".join (", ", sort values %suites)."\n";
|
||||
print "components\tComponents: ".join (", ", sort values %components)."\n";
|
||||
my $msg="omitdebsrc\t"._g("Omit deb-src from sources.list for sections:");
|
||||
foreach my $omit (sort keys %omitdebsrc) {
|
||||
$msg .= $omitdebsrc{$omit} if (defined $omitdebsrc{$omit});
|
||||
|
|
Loading…
Reference in a new issue