]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgcache.cc
merge with debian-experimental-ma
[apt.git] / apt-pkg / pkgcache.cc
index 2b051cbb08529ebe7fa271a88a1fedde8b787683..bb28a33ca5dab5f84a07b0690feb79237529c437 100644 (file)
@@ -111,7 +111,10 @@ bool pkgCache::Header::CheckSizes(Header &Against) const
 /* */
 pkgCache::pkgCache(MMap *Map, bool DoMap) : Map(*Map)
 {
-   MultiArchEnabled = APT::Configuration::getArchitectures().size() > 1;
+   // call getArchitectures() with cached=false to ensure that the 
+   // architectures cache is re-evaulated. this is needed in cases
+   // when the APT::Architecture field changes between two cache creations
+   MultiArchEnabled = APT::Configuration::getArchitectures(false).size() > 1;
    if (DoMap == true)
       ReMap();
 }