summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-09-28 00:32:38 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-09-28 00:32:38 +0200
commitbe0a16728d441e6b37f647e0b989b173cca0c142 (patch)
tree41aa98a034ac61bab3a46471c663e4802cb2e1ec /cmdline
parent39cc1bbdd0faa13dcb150b573f56cd2dd64fa460 (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')
-rw-r--r--cmdline/apt-get.cc2
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;
}