summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2009-07-31 20:29:50 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2009-07-31 20:29:50 +0200
commit0dae8ac5f8a3092057a80d932ae4e55c1e7d3ca5 (patch)
tree95884eef411cf24c40f4d9aba74a4b2beb410124
parent03dbbc98ba48eeb7c360c7fb02f21cdc9cd86465 (diff)
[cmdline/apt-get.cc] ShowBroken() in build-dep (Closes: #145916)
Patch from Mike O'Connor, thanks!
-rw-r--r--cmdline/apt-get.cc5
-rw-r--r--debian/changelog1
2 files changed, 5 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc
index d3972ad81..ebb634b4f 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -2572,7 +2572,10 @@ bool DoBuildDep(CommandLine &CmdL)
// Now we check the state of the packages,
if (Cache->BrokenCount() != 0)
- return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I);
+ {
+ ShowBroken(cout, Cache, false);
+ return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I);
+ }
}
if (InstallPackages(Cache, false, true) == false)
diff --git a/debian/changelog b/debian/changelog
index 46bd16df9..b105faaef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,7 @@ apt (0.7.23) unstable; urgency=low
* cmdline/apt-get.cc:
- add APT::Get::HideAutoRemove=small to display only a short line
instead of the full package list. (Closes: #537450)
+ - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916)
-- Michael Vogt <michael.vogt@ubuntu.com> Thu, 30 Jul 2009 15:27:30 +0200