diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-10 14:38:08 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2003-10-10 14:38:08 +0000 |
commit | d402a1848a17ee73540d22ffc5e291a4b87626c5 (patch) | |
tree | 913b9edd0b90888d66ac44c1f054781bcc10d6c2 /perl-install/install2.pm | |
parent | d7525a28e68b9c17fe5680cbbf9dc1842afef430 (diff) | |
download | drakx-d402a1848a17ee73540d22ffc5e291a4b87626c5.tar drakx-d402a1848a17ee73540d22ffc5e291a4b87626c5.tar.gz drakx-d402a1848a17ee73540d22ffc5e291a4b87626c5.tar.bz2 drakx-d402a1848a17ee73540d22ffc5e291a4b87626c5.tar.xz drakx-d402a1848a17ee73540d22ffc5e291a4b87626c5.zip |
configure automatically XFree and allow to launch interactive_gtk with it
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index d021f37c8..cdba1e737 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -429,12 +429,9 @@ sub main { if ($::move) { require move; move::init(); - $::mdkinst = ''; - } else { - $::mdkinst = 'Mandrake/mdkinst'; } - $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::live ? "" : "/mnt"; + $o->{prefix} = $::prefix = $::testing ? "/tmp/test-perl-install" : $::live || $::move ? "" : "/mnt"; $o->{isUpgrade} = 1 if $::live; mkdir $o->{prefix}, 0755; devices::make("/dev/zero"); #- needed by ddcxinfos |