summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS2
-rw-r--r--perl-install/fs/mount_options.pm1
-rw-r--r--perl-install/install/NEWS1
3 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 082f3173b..56e51ce8a 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,5 @@
+- disdrake:
+ o spaces are not allowed between options in /etc/fstab (#2271)
- drakfont:
o rename Ooo as LibreOffice (#461)
o enable support for LibreOffice/gs/... only if available(#461)
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 82260358e..bae101679 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -102,6 +102,7 @@ sub pack_ {
}
sub pack {
my ($part, $options, $unknown) = @_;
+ $unknown =~ s/ /,/g;
$part->{options} = pack_($part, $options, $unknown) || 'defaults';
noreturn();
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 2f369c55c..6e610376f 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,7 @@
- fix bootloader entries names
- detect (at least some (eg: Compaq USB numpad) (#1099)
- detect machines needing cpufreq
+- spaces are not allowed between options in /etc/fstab (#2271)
Version 13.58 - 27 May 2011