summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-10-11 12:19:12 +0000
committerThierry Vignaud <tv@mageia.org>2012-10-11 12:19:12 +0000
commit8855fcd5ca1148df8b5c27e100cdb3bf434be7ed (patch)
tree836b8f177818a89ac98e21b601fcd70a21d3d79b
parent9dc3837e1f615a33572770dcb3ed647d4c14142c (diff)
downloaddrakx-8855fcd5ca1148df8b5c27e100cdb3bf434be7ed.tar
drakx-8855fcd5ca1148df8b5c27e100cdb3bf434be7ed.tar.gz
drakx-8855fcd5ca1148df8b5c27e100cdb3bf434be7ed.tar.bz2
drakx-8855fcd5ca1148df8b5c27e100cdb3bf434be7ed.tar.xz
drakx-8855fcd5ca1148df8b5c27e100cdb3bf434be7ed.zip
(add_kernel) remove unneeded parentheses
-rw-r--r--perl-install/bootloader.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/bootloader.pm b/perl-install/bootloader.pm
index d3c6b97e4..d791f97ad 100644
--- a/perl-install/bootloader.pm
+++ b/perl-install/bootloader.pm
@@ -737,7 +737,7 @@ sub add_kernel {
#- new versions of yaboot do not handle symlinks
$b_nolink ||= arch() =~ /ppc/;
- $b_no_initrd //= (arch() =~ /mips|arm/) && !detect_devices::is_mips_gdium();
+ $b_no_initrd //= arch() =~ /mips|arm/ && !detect_devices::is_mips_gdium();
$b_nolink ||= $kernel_str->{use_long_name};