summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-06-23 08:40:48 +0000
committerOlivier Blin <oblin@mandriva.org>2004-06-23 08:40:48 +0000
commit349c0c71e5f12efb48c8799e488bd4c78f5f0d11 (patch)
treea243c5da752d438b4db078978e77eaeaf8eb01b8
parent10a091cefa1c04f8b29f887a93673932e7ea2178 (diff)
downloaddrakx-backup-do-not-use-349c0c71e5f12efb48c8799e488bd4c78f5f0d11.tar
drakx-backup-do-not-use-349c0c71e5f12efb48c8799e488bd4c78f5f0d11.tar.gz
drakx-backup-do-not-use-349c0c71e5f12efb48c8799e488bd4c78f5f0d11.tar.bz2
drakx-backup-do-not-use-349c0c71e5f12efb48c8799e488bd4c78f5f0d11.tar.xz
drakx-backup-do-not-use-349c0c71e5f12efb48c8799e488bd4c78f5f0d11.zip
fix processing of config file broken again by Titi
-rwxr-xr-xperl-install/standalone/drakboot2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakboot b/perl-install/standalone/drakboot
index 128a66fe3..dc0701b33 100755
--- a/perl-install/standalone/drakboot
+++ b/perl-install/standalone/drakboot
@@ -107,7 +107,7 @@ my $keep_logo = 1;
if (-r $themes{sysconfig}) {
local $_;
- while (cat_("$themes{sysconfig}") {
+ foreach (cat_("$themes{sysconfig}")) {
/^SPLASH=no/ and $splash_mode = 0;
/^THEME=(.*)/ and -f "$themes{path}$1$themes{boot}{path}bootsplash-$cur_res.jpg" and $themes{default} = $1;
/^LOGO_CONSOLE=(.*)/ and $keep_logo = $1 ne 'no';