diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-07-11 18:50:41 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-07-11 18:50:41 +0200 |
commit | dd13742ef11a6a601a2e85afd9d80be92ed7513a (patch) | |
tree | 685a9660c1a4b615bef3588e6754e445f4e27f11 /apt-pkg/deb/deblistparser.cc | |
parent | 3184b4cf2e8e2009ce62b8f66c666ae7da67e378 (diff) |
* apt-pkg/deb/debmetaindex.cc:
- do not query each architecture for flat file archives
Diffstat (limited to 'apt-pkg/deb/deblistparser.cc')
-rw-r--r-- | apt-pkg/deb/deblistparser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/deblistparser.cc b/apt-pkg/deb/deblistparser.cc index 2cfeb23e9..5fb737970 100644 --- a/apt-pkg/deb/deblistparser.cc +++ b/apt-pkg/deb/deblistparser.cc @@ -757,7 +757,7 @@ bool debListParser::Step() if (Architecture.empty() == true) return true; - if (Arch.empty() == true || MultiArchEnabled == false) + if (Arch.empty() == true || Arch == "any" || MultiArchEnabled == false) { if (APT::Configuration::checkArchitecture(Architecture) == true) return true; |