diff options
-rwxr-xr-x | urpmi | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,7 @@ #use strict qw(subs vars refs); use strict; use urpm; +use MDK::Common; #- contains informations to parse installed system. my $urpm = new urpm; @@ -234,6 +235,10 @@ while (defined($_ = shift @argv)) { } next; } + if (/\.urpm-rpmi$/) { + push @argv, split /\n/, cat_($_); + next; + } if ($src) { push @src_names, $_; } else { |