summaryrefslogtreecommitdiffstats
path: root/perl-install/install/install2.pm
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2016-01-09 01:25:52 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2016-01-09 01:47:22 +0100
commit536363ad8f09bbba896f5869c65870f81118fa6c (patch)
treea5ccc1d836973250c435662e80c06de398487f3d /perl-install/install/install2.pm
parent7d7f5fa30001a8ac5a1add8edc0cf23f08ecad92 (diff)
downloaddrakx-536363ad8f09bbba896f5869c65870f81118fa6c.tar
drakx-536363ad8f09bbba896f5869c65870f81118fa6c.tar.gz
drakx-536363ad8f09bbba896f5869c65870f81118fa6c.tar.bz2
drakx-536363ad8f09bbba896f5869c65870f81118fa6c.tar.xz
drakx-536363ad8f09bbba896f5869c65870f81118fa6c.zip
fix ignoring options from isolinux
regression introduced in commit 560f9ca983d743cc42701c24546ac8c2080a13fe
Diffstat (limited to 'perl-install/install/install2.pm')
-rw-r--r--perl-install/install/install2.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm
index 0756e4028..640d9e57c 100644
--- a/perl-install/install/install2.pm
+++ b/perl-install/install/install2.pm
@@ -517,7 +517,7 @@ Parse arguments (which came from either the boot loader command line or its conf
sub parse_args {
my ($cfg, $patch);
- my @cmdline = @_, map { "--$_" } split ' ', cat_("/proc/cmdline");
+ my @cmdline = (@_, map { "--$_" } split ' ', cat_("/proc/cmdline"));
#- from stage1
put_in_hash(\%ENV, { getVarsFromSh('/tmp/env') });