summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakfloppy
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-06 13:51:35 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-06 13:51:35 +0000
commit5fc8842f4caae0c596be74be6837746305a73caf (patch)
tree702b006a05032af0ef07061366d38e2c2114246a /perl-install/standalone/drakfloppy
parenteca642bfaf46597557110f96061ca241c44c1a80 (diff)
downloaddrakx-backup-do-not-use-5fc8842f4caae0c596be74be6837746305a73caf.tar
drakx-backup-do-not-use-5fc8842f4caae0c596be74be6837746305a73caf.tar.gz
drakx-backup-do-not-use-5fc8842f4caae0c596be74be6837746305a73caf.tar.bz2
drakx-backup-do-not-use-5fc8842f4caae0c596be74be6837746305a73caf.tar.xz
drakx-backup-do-not-use-5fc8842f4caae0c596be74be6837746305a73caf.zip
perl_checker cleanups
Diffstat (limited to 'perl-install/standalone/drakfloppy')
-rwxr-xr-xperl-install/standalone/drakfloppy4
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);