Skip to content

Commit

Permalink
universe: do not process base libraries on system not running pkgbase
Browse files Browse the repository at this point in the history
  • Loading branch information
bapt committed Jan 23, 2025
1 parent 0639383 commit 16bd34c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libpkg/pkg_jobs_universe.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,8 @@ pkg_jobs_universe_process_shlibs(struct pkg_jobs_universe *universe,
int rc;

tll_foreach(pkg->shlibs_required, s) {
if (pkghash_get(universe->j->system_shlibs, s->item) != NULL)
continue;
if (pkghash_get(universe->provides, s->item) != NULL)
continue;

Expand Down

0 comments on commit 16bd34c

Please sign in to comment.