From: Michael Tremer Date: Fri, 10 Jan 2025 15:00:21 +0000 (+0000) Subject: pakfire: Call pool_setarchpolicy() directly X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acecbb15ddb41a1534310d813cdc121c3528ddb6;p=people%2Fric9%2Fpakfire.git pakfire: Call pool_setarchpolicy() directly This will avoid any builtin logic from libsolv which considers ix86 alternatives which we don't support here. Signed-off-by: Michael Tremer --- diff --git a/src/pakfire/pakfire.c b/src/pakfire/pakfire.c index 38675df01..19dcfc7cf 100644 --- a/src/pakfire/pakfire.c +++ b/src/pakfire/pakfire.c @@ -298,7 +298,7 @@ static int pakfire_populate_pool(struct pakfire* pakfire) { #endif // Set architecture of the pool - pool_setarch(pool, arch); + pool_setarchpolicy(pool, arch); // Set path pool_set_rootdir(pool, pakfire->path);