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.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm
index 719ec02f3..53f70b055 100644
--- a/perl-install/modules.pm
+++ b/perl-install/modules.pm
@@ -319,7 +319,8 @@ sub extract_modules {
my $f = $modname . module_extension();
if (-e $path) {
system("gzip -dc $path > $dir/$f") == 0
- or unlink "$dir/$f";
+ or system("xz -d < $path > $dir/$f") == 0
+ or unlink "$dir/$f";
} else {
log::l("warning: unable to get module filename for $modname (path: $path)");
}