diff options
Diffstat (limited to 'lib/libalpm/package.c')
-rw-r--r-- | lib/libalpm/package.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c index 9bc34016..1afaf38c 100644 --- a/lib/libalpm/package.c +++ b/lib/libalpm/package.c @@ -125,6 +125,11 @@ void _alpm_pkg_free(void *data) /* Is pkgB an upgrade for pkgA ? */ int alpm_pkg_compare_versions(pmpkg_t *pkgA, pmpkg_t *pkgB) { + if(spkg->origin == PKG_FROM_CACHE) { + /* ensure we have the /desc file, which contains the 'force' option */ + _alpm_db_read(pkgB->data, INFRQ_DESC, pkgB); + } + if(pkgB->force) { /* skip the version compare call if this is a 'force' package */ return(1); |