Remove special handling for palo, silo and yaboot in which_deb

This commit is contained in:
John Paul Adrian Glaubitz 2017-09-06 13:20:00 +02:00
parent 47f7b12a36
commit 96691923d8
2 changed files with 2 additions and 8 deletions

1
debian/changelog vendored
View File

@ -14,6 +14,7 @@ debian-cd (3.1.21) UNRELEASED; urgency=medium
[ John Paul Adrian Glaubitz ]
* Add list of packages required for debian-installer on m68k.
* Add support for unreleased packages from Debian Ports.
* Remove special handling for palo, silo and yaboot in which_deb.
-- Steve McIntyre <93sam@debian.org> Mon, 19 Jun 2017 13:59:36 +0100

View File

@ -137,20 +137,13 @@ my $bin_deb = "";
my $pkgdata = "";
my $srcname = "";
if ($pkg eq "silo") {
$pkgdata = grab_bin_info($pth, "sparc64", $pkg);
} elsif ($pkg eq "syslinux") {
if ($pkg eq "syslinux") {
first { $pkgdata = grab_bin_info($pth, $_, "syslinux-common") } @ARCHES;
if (length($pkgdata) < 3) {
first { $pkgdata = grab_bin_info($pth, $_, "syslinux") } @ARCHES;
}
} elsif ($pkg eq "yaboot") {
$pkgdata = grab_bin_info($pth, "powerpc", $pkg);
} elsif ($pkg eq "delo") {
$pkgdata = grab_bin_info($pth, "mipsel", $pkg);
} elsif ($pkg eq "palo") {
$pkgdata = grab_bin_info($pth, "hppa", $pkg);
} else { # Fallthrough for all other packages
first { $pkgdata = grab_bin_info($pth, $_, $pkg) } @ARCHES;
}