28 Mar
2008
28 Mar
'08
1:21 a.m.
+ /* ensure dbs and pkgcaches are in sync */ + _alpm_db_refresh_pkgcache(handle->db_local); + for(i = handle->dbs_sync; i; i = i->next) { + _alpm_db_refresh_pkgcache(i->data); + } +
This is still wrong :-S. Needlessly (re)loads all pkgcaches even with -U. I will rework this later... ("refresh" should just clear pkgcache instead of load). Bye