diff options
-rwxr-xr-x | perl-install/standalone/drakfloppy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakfloppy b/perl-install/standalone/drakfloppy index 1bca87d5a..b8696cda1 100755 --- a/perl-install/standalone/drakfloppy +++ b/perl-install/standalone/drakfloppy @@ -55,7 +55,7 @@ my ($output, @modules, @temp_modules, %buttons, %options, $tree_model, $tree, $l my $conffile = "/etc/sysconfig/drakfloppy"; # we must be robust against config file parsing -eval { %options = getVarsFromSh($conffile) } or warn N("Error while parsing \"MODULES\" line from %s", $conffile); +eval { %options = getVarsFromSh($conffile) }; @modules = split(' ', $options{MODULES}); |