Просмотр исходного кода

* apt-pkg/depcache.cc:
- merge missing bugfix from ubuntu branch

Michael Vogt лет назад: 19
Родитель
Сommit
8a7bd39bdc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      apt-pkg/depcache.cc

+ 1 - 1
apt-pkg/depcache.cc

@@ -1150,7 +1150,7 @@ bool pkgDepCache::Policy::IsImportantDep(DepIterator Dep)
       string s = _config->Find("APT::Install-Recommends-Section","");
       if(s.size() > 0) 
       {
-	 const char *sec = Dep.TargetPkg().Section();
+	 const char *sec = Dep.ParentVer().Section();
 	 if (sec && strcmp(sec, s.c_str()) == 0)
 	    return true;
       }