remove: improve broken dependency error message
This message was clarified for sync operations in
2b1b7b7075
.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
d4e667ee5e
commit
5e11d86cc5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue