diff options
author | Dan McGee <dan@archlinux.org> | 2011-07-29 15:35:59 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-28 04:52:37 -0500 |
commit | 7edeb276b63efeea7e8f266dfee792e2709ba412 (patch) | |
tree | 2f4b52b2c12b564b99825c99ec9ad874d8ed945a /src/pacman/upgrade.c | |
parent | bd83c8e7562a2d6794d4322845c23cc21985979a (diff) |
Keep track of explicitly added and removed packages
This allows us to sort the output list by showing all pulled
dependencies first, followed by the explicitly specified targets.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src/pacman/upgrade.c')
-rw-r--r-- | src/pacman/upgrade.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pacman/upgrade.c b/src/pacman/upgrade.c index 565fb922..3d4e34c1 100644 --- a/src/pacman/upgrade.c +++ b/src/pacman/upgrade.c @@ -89,6 +89,7 @@ int pacman_upgrade(alpm_list_t *targets) trans_release(); return 1; } + config->explicit_adds = alpm_list_add(config->explicit_adds, pkg); } /* now that targets are resolved, we can hand it all off to the sync code */ |