summaryrefslogtreecommitdiffstats
path: root/perl-install/modules.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r--perl-install/modules.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 6b3e90616..c431268c6 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -309,7 +309,7 @@ sub extract_modules {
my $path = list_modules::modname2path($modname);
my $f = $modname . module_extension();
if (-e $path) {
- system("gzip -dc $path > $dir/$f") == 0
+ system("gzip -dc $path > $dir/$f 2>/dev/null") == 0
or system("xz -d < $path > $dir/$f") == 0
or unlink "$dir/$f";
} else {