From c3fb5c9bddf8f5954ee4002b09f5463508a4b2e4 Mon Sep 17 00:00:00 2001 From: Stefan Hundhammer Date: Wed, 29 Mar 2006 11:03:47 +0000 Subject: [PATCH] suppress atoms in patch contents --- zypp/ui/PatchContentsImpl.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zypp/ui/PatchContentsImpl.cc b/zypp/ui/PatchContentsImpl.cc index ea0fdad..a555800 100644 --- a/zypp/ui/PatchContentsImpl.cc +++ b/zypp/ui/PatchContentsImpl.cc @@ -46,7 +46,8 @@ namespace zypp { // DBG << "Found " << (*atom_it)->name() << " " << (*foundNames)->edition().asString() << endl; - if ( (*atom_it)->edition() == (*foundNames)->edition() && + if ( ! isKind( (*foundNames).resolvable() ) && + (*atom_it)->edition() == (*foundNames)->edition() && (*atom_it)->arch() == (*foundNames)->arch() ) { found = true; -- 2.7.4