diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/select.pm | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,7 @@ commit on 2006-01-11 13:17) o do try to umount removable media when using --debug (fixing rafel's commit r15048 on 2005-06-09) + o try harder to explain why a package is removed o try harder to explain why we cannot select a package (eg: because i586 package is already installed on x86_64) diff --git a/urpm/select.pm b/urpm/select.pm index e46d2c24..0300395e 100644 --- a/urpm/select.pm +++ b/urpm/select.pm @@ -488,6 +488,8 @@ sub translate_why_removed_one { N("due to conflicts with %s", $whyv); } elsif ($whyk =~ /unrequested/) { N("unrequested"); + } elsif ($whyk) { + $whyk; } else { undef; } |