summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2008-07-25 20:03:51 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2008-07-25 20:03:51 +0200
commit4faff53f166c1755a05d2509b44f22b1a326efb7 (patch)
treeefcab1a6382680108270a67313bac23718f75700 /apt-pkg
parent42e9340ee71ac781522e0ebf99b8d9c6bca2111f (diff)
* apt-pkg/depcache.cc:
- when checking for new important deps, skip critical ones (closes: #485943)
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/depcache.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc
index d1bea4cf6..d8b4dc6d2 100644
--- a/apt-pkg/depcache.cc
+++ b/apt-pkg/depcache.cc
@@ -914,8 +914,9 @@ void pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst,
{
//FIXME: deal better with or-groups(?)
DepIterator LocalStart = D;
-
- if(IsImportantDep(D) && Start.TargetPkg() == D.TargetPkg())
+
+ if(IsImportantDep(D) && !D.IsCritical() &&
+ Start.TargetPkg() == D.TargetPkg())
{
if(!isPreviouslySatisfiedImportantDep)
{