Skip to content

Commit

Permalink
show complex (relational) deps in repoquery, and to install build reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverkurth committed Jul 23, 2024
1 parent 6f1cf2e commit d98dc16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/resolve.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ TDNFResolveBuildDependencies(
}

for (i = 0; i < qDeps.count; i++) {
pszDep = pool_id2str(pTdnf->pSack->pPool, qDeps.elements[i]);
pszDep = pool_dep2str(pTdnf->pSack->pPool, qDeps.elements[i]);
if (!pszDep) {
dwError = ERROR_TDNF_INVALID_PARAMETER;
BAIL_ON_TDNF_ERROR(dwError);
Expand Down
2 changes: 1 addition & 1 deletion solv/tdnfpackage.c
Original file line number Diff line number Diff line change
Expand Up @@ -2217,7 +2217,7 @@ SolvGetDependenciesFromId(

for (i = 0; i < nNumDeps; i++)
{
pszDep = pool_id2str(pSack->pPool, queueDeps.elements[i]);
pszDep = pool_dep2str(pSack->pPool, queueDeps.elements[i]);
dwError = TDNFAllocateString(pszDep, &ppszDependencies[i]);
BAIL_ON_TDNF_ERROR(dwError);
}
Expand Down

0 comments on commit d98dc16

Please sign in to comment.