From 2c0530e634f0f184baff6ab087ec044397f46eee Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sat, 31 Dec 2005 17:58:22 +0000 Subject: added a missing code chunk of the ignore command line option (patch from VMiklos ) --- src/pacman/pacman.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 3f085a8b..3264a719 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -63,6 +63,7 @@ int main(int argc, char *argv[]) int ret = 0; char *cenv = NULL; uid_t myuid; + list_t *lp; #ifndef CYGWIN /* debug */ @@ -171,6 +172,13 @@ int main(int argc, char *argv[]) ERR(NL, "failed to set option CACHEDIR (%s)\n", alpm_strerror(pm_errno)); cleanup(1); } + + for(lp = config->op_s_ignore; lp; lp = lp->next) { + if(alpm_set_option(PM_OPT_IGNOREPKG, (long)lp->data) == -1) { + ERR(NL, "failed to set option IGNOREPKG (%s)\n", alpm_strerror(pm_errno)); + cleanup(1); + } + } if(config->verbose > 1) { printf("Root : %s\n", config->root); -- cgit v1.2.3