summaryrefslogtreecommitdiff
path: root/apt-pkg/packagemanager.cc
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2011-06-27 14:56:07 +0100
committerChristopher Baines <cbaines8@gmail.com>2011-06-27 14:56:07 +0100
commitb873565f6cdffee78d3a5a84d34b7efbda127c5b (patch)
tree10176a8a9b5688b0a35e326729f30c87087d60db /apt-pkg/packagemanager.cc
parentb9f3f1f93323cf5982ee3d9d361a11697a1ecc74 (diff)
Removed temp debug lines.
Diffstat (limited to 'apt-pkg/packagemanager.cc')
-rw-r--r--apt-pkg/packagemanager.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc
index 63becb370..f49df8327 100644
--- a/apt-pkg/packagemanager.cc
+++ b/apt-pkg/packagemanager.cc
@@ -379,14 +379,12 @@ bool pkgPackageManager::VerifyConfigure(PkgIterator Pkg, pkgOrderList &OList)
VerIterator DepInstallVer(Cache,Cache[DepPkg].InstallVer);
if (DepPkg.CurrentVer() == DepVer && !List->IsFlag(DepPkg,pkgOrderList::UnPacked)) {
- clog << "Version " << DepPkg.CurrentVer() << " is installed on the system, satifying this dependancy" << endl;
error=false;
break;
}
if (Cache[DepPkg].InstallVer == DepVer &&
(List->IsFlag(DepPkg,pkgOrderList::Configured) || OList.IsFlag(DepPkg,pkgOrderList::InList))) {
- clog << "Version " << DepInstallVer.VerStr() << " is going to be installed on the system, satifying this dependancy" << endl;
error=false;
break;
}