solver: fix sorting when solver is used multiple times within run

namely this fixes apk upgrade without --no-self-upgrade when
the solver is called twice.
cute-signatures
Timo Teräs 2011-09-15 09:48:51 +03:00
parent 21a213c212
commit cca6a7e332
1 changed files with 2 additions and 1 deletions

View File

@ -158,9 +158,10 @@ static void sort_hard_dependencies(struct apk_solver_state *ss, struct apk_packa
pkg->state_ptr = calloc(1, sizeof(struct apk_package_state));
ps = pkg_to_ps(pkg);
if (pkg->topology_hard)
if (ps->topology_soft)
return;
pkg->topology_hard = -1;
ps->topology_soft = -1;
/* Consider hard dependencies only */
foreach_dependency_pkg(ss, pkg->depends, sort_hard_dependencies);