Don't report missing filelists for non-packages (bnc#864314)
authorMichael Andres <ma@suse.de>
Tue, 18 Feb 2014 08:48:19 +0000 (09:48 +0100)
committerMichael Andres <ma@suse.de>
Fri, 21 Feb 2014 20:24:35 +0000 (21:24 +0100)
zypp/target/TargetImpl.commitFindFileConflicts.cc

index 1efb5dd..399567c 100644 (file)
@@ -65,7 +65,7 @@ namespace zypp
          {
            //DBG << "FCCB: " << sat::Solvable( id_r ) << " " << ret << endl;
            _visited.insert( id_r );
-           if ( ! ret )
+           if ( ! ret && sat::Solvable( id_r ).isKind<Package>() )     // only packages have filelists
              _noFilelist.push( id_r );
            _progress.incr();
          }