From: Michael Vogt Date: Tue, 11 Mar 2008 16:41:55 +0000 (+0100) Subject: - run the problemResolver after a task was installed X-Git-Tag: 0.7.24ubuntu1~76 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/95717122196eb888bc81f5c3e8daa74cad8db649 - run the problemResolver after a task was installed so that it can correct any missing dependencies --- diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index c522d4f87..c8671447e 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -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); diff --git a/debian/changelog b/debian/changelog index 6fd1b2746..df23ed1b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ apt (0.7.9ubuntu14) hardy; urgency=low * 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 * typo fixes (LP: #107960) --