Separate input world from output world
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
45073b7460
commit
be1ea7888b
|
@ -228,11 +228,17 @@ pkgconf_queue_verify(pkgconf_client_t *client, pkgconf_pkg_t *world, pkgconf_lis
|
||||||
{
|
{
|
||||||
unsigned int result;
|
unsigned int result;
|
||||||
|
|
||||||
if (!pkgconf_queue_compile(client, world, list))
|
|
||||||
|
pkgconf_pkg_t initial_world = {
|
||||||
|
.id = "virtual:world",
|
||||||
|
.realname = "virtual world package",
|
||||||
|
.flags = PKGCONF_PKG_PROPF_STATIC | PKGCONF_PKG_PROPF_VIRTUAL,
|
||||||
|
};
|
||||||
|
if (!pkgconf_queue_compile(client, &initial_world, list))
|
||||||
return PKGCONF_PKG_ERRF_DEPGRAPH_BREAK;
|
return PKGCONF_PKG_ERRF_DEPGRAPH_BREAK;
|
||||||
|
|
||||||
/* collect all the dependencies */
|
/* collect all the dependencies */
|
||||||
result = pkgconf_pkg_traverse(client, world, pkgconf_queue_collect_dependents, world, maxdepth, 0);
|
result = pkgconf_pkg_traverse(client, &initial_world, pkgconf_queue_collect_dependents, world, maxdepth, 0);
|
||||||
if (result != PKGCONF_PKG_ERRF_OK)
|
if (result != PKGCONF_PKG_ERRF_OK)
|
||||||
return result;
|
return result;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue