diff options
author | Michael Vogt <egon@debian-devbox> | 2012-07-27 19:18:59 +0200 |
---|---|---|
committer | Michael Vogt <egon@debian-devbox> | 2012-07-27 19:18:59 +0200 |
commit | b9c917bd62e7b1eb227d4f3a7321559ddb96e494 (patch) | |
tree | 3169d9875a6b94fbf03d3eb8ab265e67b40d4b25 /apt-pkg/cacheset.cc | |
parent | 24123a1f4341dfc45481af1a8462d7f9aeecc746 (diff) | |
parent | fbda0ee9d9f5ecd34d38f0e416837e8ef3a10f68 (diff) |
merged from david0.9.7.3
Diffstat (limited to 'apt-pkg/cacheset.cc')
-rw-r--r-- | apt-pkg/cacheset.cc | 2 |
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); |