summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index 0c55331a..2920ae73 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -4,6 +4,7 @@ package urpm;
use strict;
use MDK::Common;
+use File::Find ();
use urpm::msg;
use urpm::download;
use urpm::util;
@@ -1246,7 +1247,9 @@ this could happen if you mounted manually the directory when creating the medium
#- is a symlink to a directory.
#- make sure rpm filename format is correct and is not a source rpm
#- which are not well managed by urpmi.
- @files = split "\n", `find '$dir/' -name "*.rpm" -print`;
+ File::Find::find { wanted => sub {
+ -f && /\.rpm$/ && push @files, "$File::Find::dir/$_"
+ } }, $dir;
#- check files contains something good!
if (@files > 0) {