blob: 4e0d22acbbfa0faf7d7d1574214514cf86d228cf [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001configure 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
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010---
11 scripts/Dpkg/Arch.pm | 3 ---
12 1 file changed, 3 deletions(-)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050013
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm
15index 1720847b8..6345ce3b9 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016--- a/scripts/Dpkg/Arch.pm
17+++ b/scripts/Dpkg/Arch.pm
Brad Bishopd7bf8c12018-02-25 22:55:05 -050018@@ -323,9 +323,6 @@ sub _load_tupletable()
19 (my $dt = $debtuple) =~ s/<cpu>/$_cpu/;
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 (my $da = $debarch) =~ s/<cpu>/$_cpu/;
21
Brad Bishopd7bf8c12018-02-25 22:55:05 -050022- next if exists $debarch_to_debtuple{$da}
23- or exists $debtuple_to_debarch{$dt};
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024-
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025 $debarch_to_debtuple{$da} = $dt;
26 $debtuple_to_debarch{$dt} = $da;
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027 }
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028--
292.11.0