diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-01-18 18:37:46 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-01-18 18:37:46 +0000 |
commit | 77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9 (patch) | |
tree | 61f9f70a364a67317df5ba75f9385c0a1413e9aa /perl-install/modules.pm | |
parent | 886d9e6b9e7848e93fc8c5422cc7493f609f410b (diff) | |
download | drakx-77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9.tar drakx-77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9.tar.gz drakx-77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9.tar.bz2 drakx-77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9.tar.xz drakx-77cc98bddde7b3ebcfcb8cb02e6fe642b1cce4d9.zip |
(load_with_options) load 'crc32c' module for XFS too (mga#8676)
Diffstat (limited to 'perl-install/modules.pm')
-rw-r--r-- | perl-install/modules.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/modules.pm b/perl-install/modules.pm index ddcfc0268..3cbe942b0 100644 --- a/perl-install/modules.pm +++ b/perl-install/modules.pm @@ -111,7 +111,7 @@ sub load_with_options { my @l = map { if_(member($_, 'plip', @parallel_zip_modules), 'parport_pc'), if_($_ eq 'vfat', 'nls_cp437', 'nls_iso8859_1'), - if_($_ eq 'btrfs', 'crc32c', 'crc32c-intel'), + if_(member($_, qw(btrfs xfs)), 'crc32c', 'crc32c-intel'), dependencies_closure(cond_mapping_24_26($_)); } @$l; |