summaryrefslogtreecommitdiff
path: root/cmdline
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-08-14 21:16:02 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-08-14 21:16:02 +0200
commit8eff320d8061aa7cad48c7eaf834f70e1d3e86b4 (patch)
tree1ff5957588c6c0eabdc3373d12fbd79aa829d4b4 /cmdline
parentca7013a815d076297b16f52798bbe4b2482e9b6f (diff)
* cmdline/apt-get.cc:
- fix the "fix-policy" code * debian/changelog: - new version
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 96e974acb..4bd66383f 100644
--- a/cmdline/apt-get.cc
+++ b/cmdline/apt-get.cc
@@ -650,7 +650,7 @@ bool CacheFile::CheckDeps(bool AllowBroken)
// upgrade all policy-broken packages with ForceImportantDeps=True
for (pkgCache::PkgIterator I = Cache->PkgBegin(); !I.end(); I++)
if ((*DCache)[I].NowPolicyBroken() == true)
- DCache->MarkInstall(I,true,0,true);
+ DCache->MarkInstall(I,true,0,false, true);
}
}