From: Michael Tremer Date: Wed, 1 Nov 2023 11:15:57 +0000 (+0000) Subject: packages: Do not try to solve for recommened packages on installcheck X-Git-Tag: 0.9.30~1352 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94427e38181acb07cfeca30fb29f744d0479204e;p=pakfire.git packages: Do not try to solve for recommened packages on installcheck Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/package.c b/src/libpakfire/package.c index ac6a8c2d9..0b4a3470f 100644 --- a/src/libpakfire/package.c +++ b/src/libpakfire/package.c @@ -2504,7 +2504,7 @@ PAKFIRE_EXPORT int pakfire_package_installcheck(struct pakfire_package* pkg, } // Solve the transaction - r = pakfire_transaction_solve(transaction, 0, &p); + r = pakfire_transaction_solve(transaction, PAKFIRE_TRANSACTION_WITHOUT_RECOMMENDED, &p); if (r) { DEBUG(pkg->pakfire, "Could not install %s:\n%s\n", nevra, p);