diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 09:51:54 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-12-01 09:51:54 +0000 |
commit | 448805890080756ee28615bff2ae6fd2a4fa42b6 (patch) | |
tree | 6ec9d7a259fd4e829c6811fc400cd1ec0ab9c020 /src | |
parent | 08dca1593f82dfa4b5f1199b5b1f4d7099719be9 (diff) | |
download | pacman-448805890080756ee28615bff2ae6fd2a4fa42b6.tar.xz |
* Fixed the bug where -R pkgA pkgB failed when pkgA depended on pkgB
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/remove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/remove.c b/src/pacman/remove.c index 0e5e3ddf..4802eff0 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -104,7 +104,7 @@ int pacman_remove(list_t *targets) case PM_ERR_UNSATISFIED_DEPS: for(lp = alpm_list_first(data); lp; lp = alpm_list_next(lp)) { pmdepmissing_t *miss = alpm_list_getdata(lp); - MSG(NL, _(" %s is required by %s\n"), alpm_dep_get_target(miss), + MSG(NL, _(":: %s is required by %s\n"), alpm_dep_get_target(miss), alpm_dep_get_name(miss)); } alpm_list_free(data); |