diff options
Diffstat (limited to 'draklive')
-rwxr-xr-x | draklive | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -164,9 +164,12 @@ sub install_system { $drakx_in_chroot = $local_drakx_in_chroot; } - local %ENV = (%ENV, %{$live->{system}{install_env}}); + local %ENV = ( + %ENV, + (map { "DRAKLIVE_". uc($_->[0]) => $_->[1] } group_by2(%{$live->{settings}})), + %{$live->{system}{install_env}}, + ); $ENV{DRAKLIVE_LANGS} = join(':', get_langs($live)); - $ENV{DRAKLIVE_REGION} = $live->{settings}{region}; run_({ setarch => $live->{settings}{arch} }, 'perl', $drakx_in_chroot, $repository, |