summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/harddrake/sound.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm
index 55a6c0a7d..b79f2cc0c 100644
--- a/perl-install/harddrake/sound.pm
+++ b/perl-install/harddrake/sound.pm
@@ -28,8 +28,10 @@ my $has_nvaudio = -x '/lib/modules/' . c::kernel_version() . '/';
our %alsa2oss =
(
if_(arch() =~ /ppc/, "snd-powermac" => [ "dmasound_pmac" ]),
- if_(arch() =~ /sparc/, "snd-sun-amd7930" => [ "unknown" ]),
- if_(arch() =~ /sparc/, "snd-sun-cs4231" => [ "unknown" ]),
+ if_(arch() =~ /sparc/,
+ "snd-sun-amd7930" => [ "unknown" ],
+ "snd-sun-cs4231" => [ "unknown" ],
+ ),
"snd-ad1816a" => [ "ad1816" ], # isa
"snd-ad1848" => [ "ad1848", "pss" ], # isa
"snd-ali5451" => [ "trident" ],
729f20c2903f9c8601359eda1 (diff)downloaddrakx-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/install/steps.pm')
-rw-r--r--perl-install/install/steps.pm4
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;