summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index 8120990d..2533c78c 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -404,7 +404,7 @@ sub configure {
if ($parallel_options) {
foreach my $dir (grep { -d $_ } map { "$_/urpm" } @INC) {
opendir my $dh, $dir or die $!;
- while ($_ = readdir $dh) {
+ while (defined ($_ = readdir $dh)) {
-f "$dir/$_" or next;
$urpm->{log}->(N("examining parallel handler in file [%s]", "$dir/$_"));
eval { require "$dir/$_"; $parallel_handler = $urpm->handle_parallel_options($parallel_options) };