diff options
Diffstat (limited to 'urpm/orphans.pm')
-rw-r--r-- | urpm/orphans.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/orphans.pm b/urpm/orphans.pm index 766154a0..f68a680d 100644 --- a/urpm/orphans.pm +++ b/urpm/orphans.pm @@ -304,7 +304,7 @@ sub get_now_orphans_msg { P("The following package is now orphan, use \"urpme --auto-orphans\" to remove it.", "The following packages are now orphans, use \"urpme --auto-orphans\" to remove them.", scalar(@orphans)) - . "\n" . add_leading_spaces(join("\n", @orphans) . "\n"); + . "\n" . add_leading_spaces(join("\n", sort @orphans) . "\n"); } #- side-effects: none |