summaryrefslogtreecommitdiff
path: root/apt-pkg/algorithms.cc
diff options
context:
space:
mode:
authorDavid Kalnischkies <kalnischkies@gmail.com>2011-05-02 17:06:47 +0200
committerDavid Kalnischkies <kalnischkies@gmail.com>2011-05-02 17:06:47 +0200
commit76d4aab06d3c5edd60362fd14b38eb43416616f0 (patch)
tree2dd6aac543370b30787033fa3838bf88ebeb262b /apt-pkg/algorithms.cc
parentac5fbff8c55db2bd1cde194600115a874d9d0c73 (diff)
doesn't execute autoremove marker setting if an external solver is called
and instead rely on the Autoremove tagging to show us what could be done. (apt-internal-solver doesn't support this currently as it doesn't load the auto-information into the cache)
Diffstat (limited to 'apt-pkg/algorithms.cc')
-rw-r--r--apt-pkg/algorithms.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-pkg/algorithms.cc b/apt-pkg/algorithms.cc
index 82b1d608d..fea9e92e1 100644
--- a/apt-pkg/algorithms.cc
+++ b/apt-pkg/algorithms.cc
@@ -756,6 +756,8 @@ bool pkgProblemResolver::Resolve(bool BrokenFix)
if (EDSP::ReadResponse(solver_out, Cache) == false)
return _error->Error("Reading solver response failed");
+
+ return true;
}
return ResolveInternal(BrokenFix);
}