summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2012-06-10 13:06:11 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2012-06-10 13:06:11 +0200
commita9a370d92c490f3f28cc1a1b1619971832c76de5 (patch)
tree566a57b7328188ccbf9c005ae9a464de601caf16 /cmdline
parentf3e3a2d40e736e368678adf1c4d2793535dc9acc (diff)
* cmdline/apt-get.cc:
- complain correctly about :any build-dep on M-A:none packages
Diffstat (limited to 'cmdline')
-rw-r--r--cmdline/apt-get.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index ef16a7870..a4fd3cfb9 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -2919,9 +2919,9 @@ bool DoBuildDep(CommandLine &CmdL)
if (Ver->MultiArch == pkgCache::Version::None || Ver->MultiArch == pkgCache::Version::All)
{
if (colon == string::npos)
- {
Pkg = Ver.ParentPkg().Group().FindPkg(hostArch);
- }
+ else if (strcmp(D->Package.c_str() + colon, ":any") == 0)
+ forbidden = "Multi-Arch: none";
}
else if (Ver->MultiArch == pkgCache::Version::Same)
{
@@ -2956,13 +2956,13 @@ bool DoBuildDep(CommandLine &CmdL)
if (forbidden.empty() == false)
{
if (_config->FindB("Debug::BuildDeps",false) == true)
- cout << " :any is not allowed from M-A: same package " << (*D).Package << endl;
+ cout << D->Package.substr(colon, string::npos) << " is not allowed from " << forbidden << " package " << (*D).Package << endl;
if (hasAlternatives)
continue;
return _error->Error(_("%s dependency for %s can't be satisfied "
"because %s is not allowed on '%s' packages"),
Last->BuildDepType(D->Type), Src.c_str(),
- D->Package.c_str(), "Multi-Arch: same");
+ D->Package.c_str(), forbidden.c_str());
}
}
else if (_config->FindB("Debug::BuildDeps",false) == true)