trans/revdeps: ignore pkgs on hold.

shlib checking is still performed later on...
This commit is contained in:
Juan RP 2019-11-24 11:44:21 +01:00
parent 85b8b3bbb7
commit f723edbca1
No known key found for this signature in database
GPG Key ID: AF19F6CB482F9368

View File

@ -145,6 +145,12 @@ xbps_transaction_revdeps(struct xbps_handle *xhp, xbps_array_t pkgs)
continue;
}
free(pkgname);
/*
* If pkg is on hold, pass to the next one.
*/
if (strcmp(tract, "hold") == 0)
continue;
/*
* Time to validate revdeps for current pkg.
*/