diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-06-24 08:27:47 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-06-24 08:27:47 +0000 |
commit | b3482d84e54f4894e33b2bf6d8883535cfc5a006 (patch) | |
tree | 37c65a3c19d058910cc55b52a17aae4265376f17 /perl-install/bootloader.pm | |
parent | 483f95a1d666a0596040dc0108022dc28d814da8 (diff) | |
download | drakx-b3482d84e54f4894e33b2bf6d8883535cfc5a006.tar drakx-b3482d84e54f4894e33b2bf6d8883535cfc5a006.tar.gz drakx-b3482d84e54f4894e33b2bf6d8883535cfc5a006.tar.bz2 drakx-b3482d84e54f4894e33b2bf6d8883535cfc5a006.tar.xz drakx-b3482d84e54f4894e33b2bf6d8883535cfc5a006.zip |
make log message arch independant
Diffstat (limited to 'perl-install/bootloader.pm')
-rw-r--r-- | perl-install/bootloader.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm index 351ab705b..75fefe6dc 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -83,7 +83,7 @@ sub read() { my %b; foreach (cat_("$::prefix$file")) { next if /^\s*#/ || /^\s*$/; - ($_, $v) = /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in lilo.conf: $_"), next; + ($_, $v) = /^\s*([^=\s]+)\s*(?:=\s*(.*?))?\s*$/ or log::l("unknown line in $file: $_"), next; if (/^(image|other)$/) { if (arch() =~ /ppc/) { |