summaryrefslogtreecommitdiff
path: root/apt-pkg/cacheset.cc
diff options
context:
space:
mode:
authorMichael Vogt <egon@debian-devbox>2012-07-27 19:18:59 +0200
committerMichael Vogt <egon@debian-devbox>2012-07-27 19:18:59 +0200
commitb9c917bd62e7b1eb227d4f3a7321559ddb96e494 (patch)
tree3169d9875a6b94fbf03d3eb8ab265e67b40d4b25 /apt-pkg/cacheset.cc
parent24123a1f4341dfc45481af1a8462d7f9aeecc746 (diff)
parentfbda0ee9d9f5ecd34d38f0e416837e8ef3a10f68 (diff)
merged from david0.9.7.3
Diffstat (limited to 'apt-pkg/cacheset.cc')
-rw-r--r--apt-pkg/cacheset.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/cacheset.cc b/apt-pkg/cacheset.cc
index 784d1f0bf..1fea4f94a 100644
--- a/apt-pkg/cacheset.cc
+++ b/apt-pkg/cacheset.cc
@@ -193,6 +193,8 @@ bool PackageContainerInterface::FromGroup(PackageContainerInterface * const pci,
if (archfound != std::string::npos) {
arch = pkg.substr(archfound+1);
pkg.erase(archfound);
+ if (arch == "all" || arch == "native")
+ arch = _config->Find("APT::Architecture");
}
pkgCache::GrpIterator Grp = Cache.GetPkgCache()->FindGrp(pkg);