1From bdf60ebbeb433a80e6cfcbde9d83d89564e79e20 Mon Sep 17 00:00:00 2001
2From: Joe Slater <jslater@windriver.com>
3Date: Mon, 26 Aug 2013 23:38:45 +0000
4Subject: [PATCH] dpkg: fix configuration issue for mips64
5
6configure cannot determine the proper cpu, os, or
7architecture for mips64, and possibly other arch's
8because of faulty code added to Arch.pm in the latest
9release from upstream.  We remove that code.
10
11Upstream-Status: Pending
12
13Signed-off-by: Joe Slater <jslater@windriver.com>
14---
15 scripts/Dpkg/Arch.pm | 3 ---
16 1 file changed, 3 deletions(-)
17
18diff --git a/scripts/Dpkg/Arch.pm b/scripts/Dpkg/Arch.pm
19index 0d352eeb9..4ef5fa307 100644
20--- a/scripts/Dpkg/Arch.pm
21+++ b/scripts/Dpkg/Arch.pm
22@@ -326,9 +326,6 @@ sub _load_tupletable()
23 		    (my $dt = $debtuple) =~ s/<cpu>/$_cpu/;
24 		    (my $da = $debarch) =~ s/<cpu>/$_cpu/;
25
26-		    next if exists $debarch_to_debtuple{$da}
27-		         or exists $debtuple_to_debarch{$dt};
28-
29 		    $debarch_to_debtuple{$da} = $dt;
30 		    $debtuple_to_debarch{$dt} = $da;
31 		}
32