diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2019-10-13 10:50:48 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-10-14 01:31:43 +0200 |
commit | 5e11d86cc5c9d17f1fc99da745596e048aa805ad (patch) | |
tree | 28de89d172f49157ed2318f82ee4181aae42e161 /src | |
parent | d4e667ee5eeb3139045d7333fcddf6ba449da7b2 (diff) | |
download | pacman-5e11d86cc5c9d17f1fc99da745596e048aa805ad.tar.gz pacman-5e11d86cc5c9d17f1fc99da745596e048aa805ad.tar.xz |
remove: improve broken dependency error message
This message was clarified for sync operations in
2b1b7b70753eb56bee08cd270efc7cfa342bc0ec.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/pacman/remove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/remove.c b/src/pacman/remove.c index 9d44cf53..0eeb19d3 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -116,8 +116,8 @@ int pacman_remove(alpm_list_t *targets) for(i = data; i; i = alpm_list_next(i)) { alpm_depmissing_t *miss = i->data; char *depstring = alpm_dep_compute_string(miss->depend); - colon_printf(_("%s: removing %s breaks dependency '%s'\n"), - miss->target, miss->causingpkg, depstring); + colon_printf(_("removing %s breaks dependency '%s' required by %s\n"), + miss->causingpkg, depstring, miss->target); free(depstring); alpm_depmissing_free(miss); } |