diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-09-09 08:24:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-09-09 08:24:18 +0000 |
commit | 9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9 (patch) | |
tree | e7e5fcf0d39914a4b99f0825db9c37ebb3418b35 /perl-install/standalone | |
parent | 2c3ad959f2b9c96bd820136c25e27d4960ebb233 (diff) | |
download | drakx-9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9.tar drakx-9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9.tar.gz drakx-9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9.tar.bz2 drakx-9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9.tar.xz drakx-9cf46d5a7f48cf3f3884631dd62b258b1cfa3ac9.zip |
fix #5430: do not confuse users with debug messages
Diffstat (limited to 'perl-install/standalone')
-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}); |