summaryrefslogtreecommitdiff
path: root/apt-pkg/cachefilter.cc
diff options
context:
space:
mode:
authorMichael Vogt <egon@debian-devbox>2012-07-13 21:05:25 +0200
committerMichael Vogt <egon@debian-devbox>2012-07-13 21:05:25 +0200
commitf5294bcd79eb970a58a26f9abf7956c55ca71cf3 (patch)
tree2fe484bfab7d19d0a864e19f0ed5c919972f151c /apt-pkg/cachefilter.cc
parenta9d943a8c5a5a6fbcf0bdb888f3acc92b12888d8 (diff)
parent5f20ac7f11ae5718595d6e570474d120d30e36db (diff)
merged from donkult
Diffstat (limited to 'apt-pkg/cachefilter.cc')
-rw-r--r--apt-pkg/cachefilter.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/apt-pkg/cachefilter.cc b/apt-pkg/cachefilter.cc
index 35f95fe22..58cc812bf 100644
--- a/apt-pkg/cachefilter.cc
+++ b/apt-pkg/cachefilter.cc
@@ -66,12 +66,6 @@ static std::string CompleteArch(std::string const &arch) {
complete = complete.substr(1, complete.size()-2);
return complete;
}
- else if (arch == "armel") return "linux-arm";
- else if (arch == "armhf") return "linux-arm";
- else if (arch == "lpia") return "linux-i386";
- else if (arch == "powerpcspe") return "linux-powerpc";
- else if (arch == "uclibc-linux-armel") return "linux-arm";
- else if (arch == "uclinux-armel") return "uclinux-arm";
else if (arch == "any") return "*-*";
else return "linux-" + arch;
}