From 5554be4986d91ab66d88680cc893fe783239e07b Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 22 Jan 2017 23:28:51 -0600 Subject: [PATCH] libpkgconf: queue: chase API change (mark static root virtual packages as static) --- libpkgconf/queue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libpkgconf/queue.c b/libpkgconf/queue.c index 35670a8..227b160 100644 --- a/libpkgconf/queue.c +++ b/libpkgconf/queue.c @@ -137,7 +137,7 @@ pkgconf_queue_apply(pkgconf_client_t *client, pkgconf_list_t *list, pkgconf_queu pkgconf_pkg_t world = { .id = "virtual:world", .realname = "virtual world package", - .flags = PKGCONF_PKG_PROPF_VIRTUAL, + .flags = PKGCONF_PKG_PROPF_STATIC | PKGCONF_PKG_PROPF_VIRTUAL, }; /* if maxdepth is one, then we will not traverse deeper than our virtual package. */ @@ -178,7 +178,7 @@ pkgconf_queue_validate(pkgconf_client_t *client, pkgconf_list_t *list, int maxde pkgconf_pkg_t world = { .id = "virtual:world", .realname = "virtual world package", - .flags = PKGCONF_PKG_PROPF_VIRTUAL, + .flags = PKGCONF_PKG_PROPF_STATIC | PKGCONF_PKG_PROPF_VIRTUAL, }; /* if maxdepth is one, then we will not traverse deeper than our virtual package. */