diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-08-12 16:55:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-08-12 16:55:47 +0000 |
commit | a210c173957e68e3a8deeabecff6fd8f4d1cd07b (patch) | |
tree | 9bbad880d012fd99f2b52bafcf722550d339d2d5 /perl-install | |
parent | ed70d1f3f5f345237aea843ec4311a4057f7cb4e (diff) | |
download | drakx-a210c173957e68e3a8deeabecff6fd8f4d1cd07b.tar drakx-a210c173957e68e3a8deeabecff6fd8f4d1cd07b.tar.gz drakx-a210c173957e68e3a8deeabecff6fd8f4d1cd07b.tar.bz2 drakx-a210c173957e68e3a8deeabecff6fd8f4d1cd07b.tar.xz drakx-a210c173957e68e3a8deeabecff6fd8f4d1cd07b.zip |
fix typo
Diffstat (limited to 'perl-install')
-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 183d88b99..191f1e6df 100644 --- a/perl-install/bootloader.pm +++ b/perl-install/bootloader.pm @@ -149,7 +149,7 @@ sub add_entry { my ($bootloader, $v) = @_; foreach my $label ($v->{label}, map { 'old' . $_ . '_' . $v->{label} } ('', 2..10)) { - my $conflicting = get_label($v->{label}, $bootloader); + my $conflicting = get_label($label, $bootloader); if ($conflicting && same_entries($conflicting, $v)) { #- removing $conflicting. #- It's better than better $conflicting and not adding $v because same_entries can match not so same entries, esp. regarding symlinks |