]> git.saurik.com Git - apt.git/commitdiff
- run the problemResolver after a task was installed
authorMichael Vogt <michael.vogt@ubuntu.com>
Tue, 11 Mar 2008 16:40:15 +0000 (17:40 +0100)
committerMichael Vogt <michael.vogt@ubuntu.com>
Tue, 11 Mar 2008 16:40:15 +0000 (17:40 +0100)
    so that it can correct any missing dependencies

cmdline/apt-get.cc
debian/changelog

index 920e5e2ec5bd13676c4f4f39bd10059513e6c245..fe9416f1a575528f934137e0df5964f585ec15d3 100644 (file)
@@ -1506,10 +1506,13 @@ bool TryInstallTask(pkgDepCache &Cache, pkgProblemResolver &Fix,
       buf[end-start] = 0x0;
       if (regexec(&Pattern,buf,0,0,0) != 0)
         continue;
-      res &= TryToInstall(Pkg,Cache,Fix,Remove,false,ExpectedInst);
+      res &= TryToInstall(Pkg,Cache,Fix,Remove,true,ExpectedInst);
       found = true;
    }
    
+   // now let the problem resolver deal with any issues
+   Fix.Resolve(true);
+
    if(!found)
       _error->Error(_("Couldn't find task %s"),taskname);
 
index 6a83107fe474bb432080d7f80f755826c10b44f9..da4779f8b178210d54411bc19a5ea38634a05be9 100644 (file)
@@ -19,6 +19,8 @@ apt (0.7.12) UNRELEASED; urgency=low
     - remember hosts with Resolve failures or connect Timeouts
   * cmdline/apt-get.cc:
     - fix incorrect help output for -f (LP: #57487)
+    - run the problemResolver after a task was installed
+      so that it can correct any missing dependencies
   * debian/apt.cron.daily:
     - sleep random amount of time (default within 0-30min) before
       starting the upate to hit the mirrors less hard