summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pacman/sync.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index d72200fe..abc35940 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -454,6 +454,10 @@ int pacman_sync(list_t *targets)
if(alpm_trans_addtarget(targ) == -1) {
PM_GRP *grp = NULL;
list_t *j;
+ if(pm_errno == PM_ERR_TRANS_DUP_TARGET) {
+ /* just ignore duplicate targets */
+ continue;
+ }
if(pm_errno != PM_ERR_PKG_NOT_FOUND) {
ERR(NL, "could not add target '%s': %s\n", (char *)i->data, alpm_strerror(pm_errno));
retval = 1;