diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-06 13:51:35 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-06 13:51:35 +0000 |
commit | 5fc8842f4caae0c596be74be6837746305a73caf (patch) | |
tree | 702b006a05032af0ef07061366d38e2c2114246a /perl-install/standalone | |
parent | eca642bfaf46597557110f96061ca241c44c1a80 (diff) | |
download | drakx-5fc8842f4caae0c596be74be6837746305a73caf.tar drakx-5fc8842f4caae0c596be74be6837746305a73caf.tar.gz drakx-5fc8842f4caae0c596be74be6837746305a73caf.tar.bz2 drakx-5fc8842f4caae0c596be74be6837746305a73caf.tar.xz drakx-5fc8842f4caae0c596be74be6837746305a73caf.zip |
perl_checker cleanups
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakfloppy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakfloppy b/perl-install/standalone/drakfloppy index d2348d69a..e4daae23b 100755 --- a/perl-install/standalone/drakfloppy +++ b/perl-install/standalone/drakfloppy @@ -50,7 +50,7 @@ unless ($::isEmbedded) { } -my ($output, @modules, @temp_modules, %buttons, %options, $tree_model, $tree, $list_model, $list); +my (@modules, @temp_modules, %buttons, %options, $tree_model, $tree, $list_model, $list); my $conffile = "/etc/sysconfig/drakfloppy"; @@ -286,7 +286,7 @@ sub build_it() { if_($options{raid}, "--omit-raid-modules"), if_(@modules, map { my $i = $_; $i =~ s!.*/!!; "--with=$i" } @modules), ); - $initrd_args = "--mkinitrdargs \"$initrd_args\"" if $initrd_args; + $initrd_args = qq(--mkinitrdargs "$initrd_args") if $initrd_args; my $co = join(' ', "/sbin/mkbootdisk --noprompt --verbose --device", $device_combo->entry->get_text, $initrd_args); $options{MODULES} = join(' ', @modules); setVarsInSh($conffile, \%options); |