diff options
author | Colin Watson <cjwatson@canonical.com> | 2012-11-20 18:16:30 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@canonical.com> | 2012-11-20 18:16:30 +0000 |
commit | 739aa5d108aaee7864cc204704341cd8258fc4f1 (patch) | |
tree | 9a276f919575ab71369ec572e6a3e71415d2fc00 /cmdline | |
parent | 4a53b1eb164f05984812052b85c07e223e311aa2 (diff) |
Fix mismerge of cross-build-dependency handling patch from
0.8.16~exp12ubuntu7.
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index ede5ed6d3..54408329a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2943,7 +2943,7 @@ bool DoBuildDep(CommandLine &CmdL) for (; Ver != verlist.end(); ++Ver) { forbidden.clear(); - if (Ver->MultiArch == pkgCache::Version::None || Ver->MultiArch == pkgCache::Version::All) + if (Ver->MultiArch == pkgCache::Version::None) { if (colon == string::npos) Pkg = Ver.ParentPkg().Group().FindPkg(hostArch); |