diff options
author | George Greer <perl@greerga.m-l.org> | 2011-02-15 12:34:10 -0500 |
---|---|---|
committer | George Greer <perl@greerga.m-l.org> | 2011-02-15 12:57:54 -0500 |
commit | fc2292f72612e5bcc77ddb212e9b651c991def44 (patch) | |
tree | 1f8ff0adb79371fc2cdcff53a88b3daadc350d63 /dist | |
parent | 453bfd442f7dd1d2a5e0d56afa5e6beef97333c1 (diff) | |
download | perl-fc2292f72612e5bcc77ddb212e9b651c991def44.tar.gz |
ExtUtils-CBuilder is causing some collateral smoke; fix variable name.
Since the variable was empty, the include of ::Platform::MSVC failed
and it fell back to ::Base which tried to use "-o" as a parameter.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm index ba0f768158..1a76d3a903 100644 --- a/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm +++ b/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder.pm @@ -21,7 +21,7 @@ my $load = sub { { my @package = split /::/, __PACKAGE__; - my $os_type = os_type(); + my $ostype = os_type(); if (grep {-e File::Spec->catfile($_, @package, 'Platform', $^O) . '.pm'} @INC) { $load->(__PACKAGE__ . "::Platform::$^O"); |