diff options
author | Francois Pons <fpons@mandriva.com> | 2003-05-13 21:05:09 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-05-13 21:05:09 +0000 |
commit | e7448a4860fd2233d3590119afbd8b9c65fcb225 (patch) | |
tree | f31471b1c95684e116b2ea0c3c358b2d5c9bd16c /urpm.pm | |
parent | f8fbfa2fe45d7bfa9cce1c2255365dde70f3e696 (diff) | |
download | urpmi-e7448a4860fd2233d3590119afbd8b9c65fcb225.tar urpmi-e7448a4860fd2233d3590119afbd8b9c65fcb225.tar.gz urpmi-e7448a4860fd2233d3590119afbd8b9c65fcb225.tar.bz2 urpmi-e7448a4860fd2233d3590119afbd8b9c65fcb225.tar.xz urpmi-e7448a4860fd2233d3590119afbd8b9c65fcb225.zip |
4.3-10mdk
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -2602,17 +2602,7 @@ sub install { } ++$update; } - if (!$options{nodeps} and @l = $trans->check) { - if ($options{translate_message}) { - foreach (@l) { - my ($type, $needs, $conflicts) = split '@', $_; - $_ = ($type eq 'requires' ? - N("%s is needed by %s", $needs, $conflicts) : - N("%s conflicts with %s", $needs, $conflicts)); - } - } - return @l; - } + !$options{nodeps} and @l = $trans->check(%options) and return @l; !$options{noorder} and @l = $trans->order and return @l; #- assume default value for some parameter. |