diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-12-12 12:22:36 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-12-12 12:22:36 +0000 |
commit | 72d2a890727140ae1e000609f0fc93333fe81c95 (patch) | |
tree | 6d8292bd5acd2a6cd3b5e88f4e6eff44220490a5 /perl-install | |
parent | 9aa76ab97fa39c6729f20c2903f9c8601359eda1 (diff) | |
download | drakx-72d2a890727140ae1e000609f0fc93333fe81c95.tar drakx-72d2a890727140ae1e000609f0fc93333fe81c95.tar.gz drakx-72d2a890727140ae1e000609f0fc93333fe81c95.tar.bz2 drakx-72d2a890727140ae1e000609f0fc93333fe81c95.tar.xz drakx-72d2a890727140ae1e000609f0fc93333fe81c95.zip |
(exitInstall) fix distro name in /root/drakx/README
(bogus cleaning on importing drakx)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install/steps.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps.pm b/perl-install/install/steps.pm index f3240122e..968f076f1 100644 --- a/perl-install/install/steps.pm +++ b/perl-install/install/steps.pm @@ -837,13 +837,13 @@ sub exitInstall { output("$::prefix/root/drakx/package_list.pl", install::any::selected_leaves_pl($o)); eval { install::any::getAndSaveAutoInstallFloppies($o, 1) } if arch() !~ /^ppc/; - eval { output "$::prefix/root/drakx/README", "This directory contains several installation-related files, + eval { output "$::prefix/root/drakx/README", sprintf("This directory contains several installation-related files, mostly log files (very useful if you ever report a bug!). Beware that some %s tools rely on the contents of some of these files... so remove any file from here at your own risk! -" }; +", "Mageia") }; #- wait for remaining processes. foreach (@{$o->{waitpids}}) { waitpid $_, 0; |