diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-28 00:32:38 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-09-28 00:32:38 +0200 |
commit | be0a16728d441e6b37f647e0b989b173cca0c142 (patch) | |
tree | 41aa98a034ac61bab3a46471c663e4802cb2e1ec /cmdline/apt-get.cc | |
parent | 39cc1bbdd0faa13dcb150b573f56cd2dd64fa460 (diff) |
* cmdline/apt-get.cc:
- run TryToInstall() in a way that it won't automatically tries to
fix the cache after each package but queue them all first
Diffstat (limited to 'cmdline/apt-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 09bf572a5..25d205a4f 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1440,7 +1440,7 @@ bool TryInstallTask(pkgDepCache &Cache, pkgProblemResolver &Fix, buf[end-start] = 0x0; if (regexec(&Pattern,buf,0,0,0) != 0) continue; - res &= TryToInstall(Pkg,Cache,Fix,false,BrokenFix,ExpectedInst); + res &= TryToInstall(Pkg,Cache,Fix,false,true,ExpectedInst); found = true; } |