- Regression originating from somewhere around commit
781cfed0fd9c9651a2dd49175a85536f0b34b95b, obsoletes from installed
packages were matched against the package being built.
Building obsoleted packages needs to be possible, they could be for
an older distro for example.
checkInstDeps(ts, dcache, p, RPMTAG_CONFLICTNAME, rpmdsN(provides));
}
+ /* Skip obsoletion checks for source packages (ie build) */
+ if (rpmteIsSource(p))
+ continue;
+
/* Check package name (not provides!) against installed obsoletes */
checkInstDeps(ts, dcache, p, RPMTAG_OBSOLETENAME, rpmteN(p));
}