diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-18 16:44:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-18 16:44:52 +0000 |
commit | e9746d5b1868e7ecdbabce94c47325e05c2f666d (patch) | |
tree | 0c1d2ca28c1c3c7fbddb81d4b3d29572895bded7 /perl-install/harddrake | |
parent | c7a67d1bcbcffaadbbb06be8f11e78e7508eed02 (diff) | |
download | drakx-backup-do-not-use-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar drakx-backup-do-not-use-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.gz drakx-backup-do-not-use-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.bz2 drakx-backup-do-not-use-e9746d5b1868e7ecdbabce94c47325e05c2f666d.tar.xz drakx-backup-do-not-use-e9746d5b1868e7ecdbabce94c47325e05c2f666d.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/harddrake')
-rw-r--r-- | perl-install/harddrake/sound.pm | 2 | ||||
-rw-r--r-- | perl-install/harddrake/ui.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/sound.pm b/perl-install/harddrake/sound.pm index 1d7d4c2d8..8a20842dd 100644 --- a/perl-install/harddrake/sound.pm +++ b/perl-install/harddrake/sound.pm @@ -123,7 +123,7 @@ my %oss2alsa = "ymfpci" => [ "snd-ymfpci" ] ); -my @blacklist = (qw(cs46xx cs4281)); +my @blacklist = qw(cs46xx cs4281); my $blacklisted = 0; sub rooted { run_program::rooted($::prefix, @_) } diff --git a/perl-install/harddrake/ui.pm b/perl-install/harddrake/ui.pm index 741d9d19e..6957116ef 100644 --- a/perl-install/harddrake/ui.pm +++ b/perl-install/harddrake/ui.pm @@ -163,7 +163,7 @@ sub new { # Build the gui add_icon_path('/usr/share/pixmaps/harddrake2/'); - $w = my_gtk->new((N("Harddrake2 version ") . $harddrake::data::version)); + $w = my_gtk->new(N("Harddrake2 version ") . $harddrake::data::version); $w->{window}->set_usize(760, 550) unless $::isEmbedded; $options{MODEMS_DETECTION} = 1 unless defined $options{MODEMS_DETECTION}; $options{PRINTERS_DETECTION} = 1 unless defined $options{PRINTERS_DETECTION}; |