diff options
author | Francois Pons <fpons@mandriva.com> | 2003-09-05 15:12:02 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-09-05 15:12:02 +0000 |
commit | 63e88d1369bd72101cd729d6f8c1c6f4c1c4b768 (patch) | |
tree | 30767faff8e05f6f6ac19dc75e596a971f2ad3be /urpm.pm | |
parent | cdb458cd02aadb294205c859713379e35e8ff4d8 (diff) | |
download | urpmi-63e88d1369bd72101cd729d6f8c1c6f4c1c4b768.tar urpmi-63e88d1369bd72101cd729d6f8c1c6f4c1c4b768.tar.gz urpmi-63e88d1369bd72101cd729d6f8c1c6f4c1c4b768.tar.bz2 urpmi-63e88d1369bd72101cd729d6f8c1c6f4c1c4b768.tar.xz urpmi-63e88d1369bd72101cd729d6f8c1c6f4c1c4b768.zip |
always display package skipped ;-)
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -856,7 +856,7 @@ sub configure { unless ($options{noskipping}) { $urpm->compute_flags($urpm->get_packages_list($urpm->{skiplist}, $options{skip}), skip => 1, callback => sub { my ($urpm, $pkg) = @_; - $urpm->{log}(N("skipping package %s", scalar($pkg->fullname))); + $urpm->{error}(N("skipping package %s", scalar($pkg->fullname))); }); } unless ($options{noinstalling}) { |