[pacman-dev] [PATCH] sync_prepare: exclude removals from resolvedeps

Andrew Gregory andrew.gregory.8 at gmail.com
Mon Mar 24 09:59:45 EDT 2014


Signed-off-by: Andrew Gregory <andrew.gregory.8 at gmail.com>
---
 lib/libalpm/sync.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index 44a0ba8..cf7f0a8 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -402,7 +402,7 @@ int _alpm_sync_prepare(alpm_handle_t *handle, alpm_list_t **data)
 
 	if(!(trans->flags & ALPM_TRANS_FLAG_NODEPS)) {
 		alpm_list_t *resolved = NULL;
-		alpm_list_t *remove = NULL;
+		alpm_list_t *remove = alpm_list_copy(trans->remove);
 		alpm_list_t *localpkgs;
 
 		/* Build up list by repeatedly resolving each transaction package */
-- 
1.9.0



More information about the pacman-dev mailing list