From 77be3f53e9cc128df584a78bffe4d085695ee4fb Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sat, 7 Jan 2006 20:05:10 +0000 Subject: removed all code related to PM_SYNC_TYPE_DEPEND --- lib/libalpm/sync.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'lib/libalpm/sync.c') diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c index fe655b8b..ab1a0fdd 100644 --- a/lib/libalpm/sync.c +++ b/lib/libalpm/sync.c @@ -621,7 +621,6 @@ int sync_commit(pmtrans_t *trans, pmdb_t *db_local, PMList **data) PMList *i; pmtrans_t *tr = NULL; int replaces = 0; - int removal = 0; ASSERT(db_local != NULL, RET_ERR(PM_ERR_DB_NULL, -1)); ASSERT(trans != NULL, RET_ERR(PM_ERR_TRANS_NULL, -1)); @@ -652,17 +651,9 @@ int sync_commit(pmtrans_t *trans, pmdb_t *db_local, PMList **data) replaces++; } } - } else if(sync->type == PM_SYNC_TYPE_REMOVE) { - pmpkg_t *pkg = sync->data; - if(!pkg_isin(pkg, tr->packages)) { - if(trans_addtarget(tr, pkg->name) == -1) { - goto error; - } - removal++; - } } } - if(replaces+removal != 0) { + if(replaces) { _alpm_log(PM_LOG_FLOW1, "removing conflicting and to-be-replaced packages"); if(trans_prepare(tr, data) == -1) { _alpm_log(PM_LOG_ERROR, "could not prepare removal transaction"); -- cgit v1.2.3-24-g4f1b