diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-11-14 23:40:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-11-14 23:40:08 +0000 |
commit | a4e14fec987246dde7e9f757a9ae9e1834080d33 (patch) | |
tree | 5b86b4cf5005887e22276a5693b0f548a877e3e9 /perl-install/partition_table/raw.pm | |
parent | 78e8097c578fb334c7440a5459fdb7aecc827feb (diff) | |
download | drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.gz drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.bz2 drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.tar.xz drakx-a4e14fec987246dde7e9f757a9ae9e1834080d33.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/partition_table/raw.pm')
-rw-r--r-- | perl-install/partition_table/raw.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table/raw.pm b/perl-install/partition_table/raw.pm index d9a672bce..0456c8c26 100644 --- a/perl-install/partition_table/raw.pm +++ b/perl-install/partition_table/raw.pm @@ -146,7 +146,7 @@ sub zero_MBR { my $type = arch() =~ /ia64/ ? 'gpt' : arch() eq "alpha" ? "bsd" : arch() =~ /^sparc/ ? "sun" : arch() eq "ppc" ? "mac" : "dos"; #- override standard mac type on PPC for IBM machines to dos $type = "dos" if arch() =~ /ppc/ && detect_devices::get_mac_model() =~ /^IBM/; - require("partition_table/$type.pm"); + require "partition_table/$type.pm"; bless $hd, "partition_table::$type"; $hd->{primary} = $hd->clear_raw(); delete $hd->{extended}; |