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

move debug message about attempt install/remove to the responsible method

David Kalnischkies лет назад: 15
Родитель
Сommit
ac32148639
1 измененных файлов с 8 добавлено и 3 удалено
  1. 8 3
      cmdline/apt-get.cc

+ 8 - 3
cmdline/apt-get.cc

@@ -1388,6 +1388,14 @@ bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache,
 	 return AllowFail;
    }
 
+   if (_config->FindB("Debug::BuildDeps",false) == true)
+   {
+      if (Remove == true)
+	 cout << "  Trying to remove " << Pkg << endl;
+      else
+	 cout << "  Trying to install " << Pkg << endl;
+   }
+
    if (Remove == true)
    {
       TryToRemove RemoveAction(Cache, &Fix);
@@ -2849,9 +2857,6 @@ bool DoBuildDep(CommandLine &CmdL)
 	       }
 	    }
 
-            if (_config->FindB("Debug::BuildDeps",false) == true)
-               cout << "  Trying to install " << (*D).Package << endl;
-
             if (TryToInstallBuildDep(Pkg,Cache,Fix,false,false) == true)
             {
                // We successfully installed something; skip remaining alternatives