[pacman-dev] [PATCH] Do not check for ALPM_ERR_PKG_INVALID_ARCH on remove operation

Allan McRae allan at archlinux.org
Sat Feb 11 18:56:20 EST 2012


alpm_trans_prepare can not return ALPM_ERR_PKG_INVALID_ARCH on a
remove operation so there is no point in checking for it

Signed-off-by: Allan McRae <allan at archlinux.org>
---
 src/pacman/remove.c |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/pacman/remove.c b/src/pacman/remove.c
index 96bb537..52d2c7a 100644
--- a/src/pacman/remove.c
+++ b/src/pacman/remove.c
@@ -115,12 +115,6 @@ int pacman_remove(alpm_list_t *targets)
 		pm_printf(ALPM_LOG_ERROR, _("failed to prepare transaction (%s)\n"),
 		        alpm_strerror(err));
 		switch(err) {
-			case ALPM_ERR_PKG_INVALID_ARCH:
-				for(i = data; i; i = alpm_list_next(i)) {
-					const char *pkg = i->data;
-					printf(_(":: package %s does not have a valid architecture\n"), pkg);
-				}
-				break;
 			case ALPM_ERR_UNSATISFIED_DEPS:
 				for(i = data; i; i = alpm_list_next(i)) {
 					alpm_depmissing_t *miss = i->data;
-- 
1.7.9



More information about the pacman-dev mailing list