Просмотр исходного кода

[cmdline/apt-get.cc] ShowBroken() in build-dep (Closes: #145916)
Patch from Mike O'Connor, thanks!

David Kalnischkies лет назад: 17
Родитель
Сommit
0dae8ac5f8
2 измененных файлов с 5 добавлено и 1 удалено
  1. 4 1
      cmdline/apt-get.cc
  2. 1 0
      debian/changelog

+ 4 - 1
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)

+ 1 - 0
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