projects
/
platform
/
upstream
/
libzypp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c6d568
)
log resolvePool result
author
Klaus Kaempf
<kkaempf@suse.de>
Mon, 6 Feb 2006 14:48:00 +0000
(14:48 +0000)
committer
Klaus Kaempf
<kkaempf@suse.de>
Mon, 6 Feb 2006 14:48:00 +0000
(14:48 +0000)
zypp/solver/detail/Resolver.cc
patch
|
blob
|
history
diff --git
a/zypp/solver/detail/Resolver.cc
b/zypp/solver/detail/Resolver.cc
index d26e0555748b53e33426571fe23495dd4929576e..7c67651347fe7d4bc4f7fcc6e97cd97d9f2ebc93 100644
(file)
--- a/
zypp/solver/detail/Resolver.cc
+++ b/
zypp/solver/detail/Resolver.cc
@@
-638,10
+638,13
@@
Resolver::resolvePool ()
bool have_solution = resolveDependencies (); // resolve !
if (have_solution) { // copy solution back to pool
+ MIL << "Have solution, copying back to pool" << endl;
ResolverContext_Ptr solution = bestContext();
solution->foreachMarked (solution_to_pool, NULL);
}
-
+ else {
+ MIL << "!!! Have NO solution !!!" << endl;
+ }
return have_solution;
}