blob: 4e0d22acbbfa0faf7d7d1574214514cf86d228cf [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001configure cannot determine the proper cpu, os, or
2architecture for mips64, and possibly other arch's
3because of faulty code added to Arch.pm in the latest
4release from upstream. We remove that code.
5
6Upstream-Status: Pending
7
8Signed-off-by: Joe Slater <jslater@windriver.com>
9
10---
11 scripts/Dpkg/Arch.pm | 3 ---
12 1 file changed, 3 deletions(-)
13
14diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm
15index 1720847b8..6345ce3b9 100644
16--- a/scripts/Dpkg/Arch.pm
17+++ b/scripts/Dpkg/Arch.pm
18@@ -323,9 +323,6 @@ sub _load_tupletable()
19 (my $dt = $debtuple) =~ s/<cpu>/$_cpu/;
20 (my $da = $debarch) =~ s/<cpu>/$_cpu/;
21
22- next if exists $debarch_to_debtuple{$da}
23- or exists $debtuple_to_debarch{$dt};
24-
25 $debarch_to_debtuple{$da} = $dt;
26 $debtuple_to_debarch{$dt} = $da;
27 }
28--
292.11.0