diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:46:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-08-08 23:46:18 +0000 |
commit | 847b53bbde4ec1dcae1bf72b8a1f72bc90586988 (patch) | |
tree | 155a95cd28e3db2e51409ba89f4e2852c1816904 /perl-install/standalone | |
parent | 1aeb5e9ce5b741db7c7e5dc1c8accec799576fca (diff) | |
download | drakx-backup-do-not-use-847b53bbde4ec1dcae1bf72b8a1f72bc90586988.tar drakx-backup-do-not-use-847b53bbde4ec1dcae1bf72b8a1f72bc90586988.tar.gz drakx-backup-do-not-use-847b53bbde4ec1dcae1bf72b8a1f72bc90586988.tar.bz2 drakx-backup-do-not-use-847b53bbde4ec1dcae1bf72b8a1f72bc90586988.tar.xz drakx-backup-do-not-use-847b53bbde4ec1dcae1bf72b8a1f72bc90586988.zip |
sort theme list
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakboot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot index fd7649e13..0b0fb92e3 100755 --- a/perl-install/standalone/drakboot +++ b/perl-install/standalone/drakboot @@ -119,7 +119,7 @@ if (-r $themes{sysconfig}) { my @boot_thms = if_(!$themes{default}, qw(default)); chdir($themes{path}); #- we must change directory for correct @boot_thms assignement -foreach (all('.')) { +foreach (sort(all('.'))) { if (-d "$themes{path}$_" && m/^[^.]/) { -f "$themes{path}$_$themes{boot}{path}bootsplash-$cur_res.jpg" and push @boot_thms, $_; } |