fixed base not being compared if no srcinfo is available

This commit is contained in:
2022-02-10 16:42:06 +01:00
parent b8967e6080
commit 89d55a6bfd

View File

@@ -584,7 +584,7 @@ func (p *BuildPackage) isAvailable(h *alpm.Handle) bool {
return false return false
} }
if pkg.DB().Name() != p.Repo.String() { if pkg.DB().Name() != p.Repo.String() || pkg.Base() != p.Pkgbase {
return false return false
} }