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 | |
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)
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/modules.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 496adb7cd..aa6c39bbe 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- load 'crc32c' module for XFS too (mga#8676) + Version 15.19 - 14 January 2013 - Mageia 3 beta 2 left background 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; |