diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-06-23 07:10:53 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-06-23 07:10:53 +0000 |
commit | 8008dcc21de9f12627af2968feb0ed7abea64b76 (patch) | |
tree | 3c6e354f917136d892545b8cc8c2216c9f3798a5 /perl-install | |
parent | ab8056603eda43dec4f038de119fbd483aa2489a (diff) | |
download | drakx-8008dcc21de9f12627af2968feb0ed7abea64b76.tar drakx-8008dcc21de9f12627af2968feb0ed7abea64b76.tar.gz drakx-8008dcc21de9f12627af2968feb0ed7abea64b76.tar.bz2 drakx-8008dcc21de9f12627af2968feb0ed7abea64b76.tar.xz drakx-8008dcc21de9f12627af2968feb0ed7abea64b76.zip |
remove unused variable
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/drakboot | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index 6fdb5a60d..d69a41607 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -116,12 +116,10 @@ if (-r $themes{sysconfig}) { close($SYSF); } -my @thms; my @boot_thms = if_(!$themes{default}, qw(default)); -chdir($themes{path}); #- we must change directory for correct @thms assignement +chdir($themes{path}); #- we must change directory for correct @boot_thms assignement foreach (all('.')) { if (-d "$themes{path}$_" && m/^[^.]/) { - push @thms, $_; -f "$themes{path}$_$themes{boot}{path}bootsplash-$cur_res.jpg" and push @boot_thms, $_; } } |