diff options
Diffstat (limited to 'src/pacman/add.c')
-rw-r--r-- | src/pacman/add.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/pacman/add.c b/src/pacman/add.c index 632366c6..86091bdc 100644 --- a/src/pacman/add.c +++ b/src/pacman/add.c @@ -1,7 +1,7 @@ /* * add.c * - * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> + * Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -39,6 +39,14 @@ extern config_t *config; +int pacman_upgrade(alpm_list_t *targets) +{ + /* this is basically just a remove-then-add process. pacman_add() will */ + /* handle it */ + config->upgrade = 1; + return(pacman_add(targets)); +} + int pacman_add(alpm_list_t *targets) { alpm_list_t *i = targets, *data = NULL; |